in reply to Re: Soap::Lite and Complex Types with WSDL
in thread Soap::Lite and Complex Types with WSDL

As far as I'm aware I can't use SOAP::Lite->proxy while using a local file location for my WSDL file? It doesn't like the 'file:/' like SOAP::Lite->service does. Thanks.
  • Comment on Re^2: Soap::Lite and Complex Types with WSDL

Replies are listed 'Best First'.
Re^3: Soap::Lite and Complex Types with WSDL
by Anonymous Monk on May 11, 2011 at 14:34 UTC
    As far as I'm aware I can't use SOAP::Lite->proxy while using a local file location for my WSDL file? It doesn't like the 'file:/' like SOAP::Lite->service does. Thanks.

    I don't know what you mean by that. See How do I post a question effectively?

      In my original post I'm using
      my $soap_result = SOAP::Lite -> service('file:/home/wsdl/Contact_Interface.wsdl') ;
      In your reply you are using:
      my $soap = SOAP::Lite ->proxy( 'http://localhost/blah/DummyService');
      And I don't believe I can use the second example with a local file.
        And I don't believe I can use the second example with a local file.

        You don't have to -- the code I posted is how I debug SOAP::Lite, DummyService doesn't exist, there is no server on localhost