in reply to Re^3: Issues trying to pass variable to SOAP::Lite
in thread Issues trying to pass variable to SOAP::Lite

I'm guessing 'use' and 'import' operate the same as BEGIN in a persistent environment, they only get ran once per compile, is this correct? The problem being that BEGIN works great the first time the app is compiled, but with speedycgi(PerPerl) the program is only compiled once for multiple runs, so I cannot redefine that variable after the first run.
  • Comment on Re^4: Issues trying to pass variable to SOAP::Lite

Replies are listed 'Best First'.
Re^5: Issues trying to pass variable to SOAP::Lite
by Anonymous Monk on May 02, 2008 at 07:29 UTC
    import is a method, use it?