in reply to Re^2: Problem with combination of SOAP::Lite and Apache AXIS2
in thread Problem with combination of SOAP::Lite and Apache AXIS2

I'm sure the authors of SOAP::Lite will be delighted with your patches.

I'm not quite sure what your beef is, you have ignored my inquiry as to what your client code looked like and simply decided that SOAP::Lite doesn't work at all.

I think there is a problem with parsing the WSDL that axis2 generates, but this is partially because it exercises a number of features that are axis specific. Anyhow SOAP::Lite will work fine with that service (and I have installed axis2 to test this), this code works as expected for me:

use SOAP::Lite; + my $soap = SOAP::Lite->new(); + $soap->uri('http://axisversion.sample/xsd'); $soap->service('http://localhost:8080/axis2/services/version?wsdl'); + + print $soap->getVersion();

/J\

Replies are listed 'Best First'.
Re^4: Problem with combination of SOAP::Lite and Apache AXIS2
by Anonymous Monk on May 18, 2006 at 17:23 UTC

    Something special to AXIS, oh, then that's not SOAP. Love what you have said.

Re^4: Problem with combination of SOAP::Lite and Apache AXIS2
by Anonymous Monk on May 22, 2006 at 20:01 UTC

    Your way gives this error:

    Transport is not specified (using proxy() method or service descriptio +n)