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 2011-02-06 17:20:07.752425-08 by frankc
wsdl2perl fails when no document style declared in WSDL
wsdl2perl dies reasonably in /SOAP/WSDL/Generator/Template/XSD/Interface/Operation.tt after not finding any "style" declaration in a WSDL file (from a .NET project) that we have no control over. We had to hack line 7 as follows:
#style => [% style = operation.first_operation.get_style || binding.get_style; style => [% style = operation.first_operation.get_style || binding.get_style || 'document';
.. to force continuation. I presume this is a failure by .NET to follow standards but given that this WSDL spec is what we get, what is a better way for us to override and/or correctly determine the encoding style? .. thanks
Direct Responses: Write a response