We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When converting a WSDL that has methods with more than one response elements, it ends up putting them as parameters for the request.
Example:
<xsd:element name="getStuffResponse"> <xsd:complexType> <xsd:sequence> <xsd:element name="Stuff" type="xsd:string"></xsd:element> <xsd:element name="More Stuff" type="xsd:string"></xsd:element> </xsd:sequence> </xsd:complexType> </xsd:element>
Example 2:
<message name="NDFDgenResponse"> <part name="dwmlOut" type="xsd:string"/> <part name="dwmlOut2" type="xsd:string"/> </message>
In both cases, the elements will be listed under the request parameters instead of listed under the response.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When converting a WSDL that has methods with more than one response elements, it ends up putting them as parameters for the request.
Example:
Example 2:
In both cases, the elements will be listed under the request parameters instead of listed under the response.
The text was updated successfully, but these errors were encountered: