in reply to Problems creating a SOAP::Lite client
First off, please close your <code> tag.
Next, you're missing the implicit BEGIN there. Remember that use is a require and import inside a BEGIN block. What that means is that your use line is executing outside the eval, and before $proxy is initialised. Putting your initialisation inside another BEGIN block would work.
Hope that helps,my ($uri, $proxy, $result); BEGIN { $uri = "tcp://$server/ENG/AddressManagement/NameServerManagement"; $proxy = 'tcp://rheise-linux:82'; } use SOAP::Lite ...;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problems creating a SOAP::Lite client
by robert.heise (Initiate) on Nov 13, 2006 at 15:12 UTC | |
by Tanktalus (Canon) on Nov 13, 2006 at 15:50 UTC |