I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-10-05 10:36:31.585335-07 by jcroall
response and body,header reversed in Deserializer-XSD ?
Hello, To get SOAP::WSDL 2.00.99_3 to work with my JAX-based web service, I had to make the following change to Deserializer::XSD. In init_from_caller():
if ( ref $method ) { # set class resolver if serializer supports it if ( $caller->isa('SOAP::WSDL::Client') ) { #$parser->set_header_parts( $method->{header}->{response}->{parts} ); #$parser->set_body_parts( $method->{body}->{response}->{parts} ); $parser->set_header_parts( $method->{response}->{header}->{parts} ); $parser->set_body_parts( $method->{response}->{body}->{parts} );
Changing the order from header->response to response->header, etc. Is this a bug in SOAP::WSDL or an oddity of my server? Thanks, - James
Direct Responses: 13011 | Write a response