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
I’m testing the wsdl2ksoap tool and it fail me with the attached wsdl.
I think the problem is in the ServiceSoap class method InsertPerson. The generated code is the following:
public InsertPersonResponse InsertPerson(InsertPerson params) throws Exception { SoapSerializationEnvelope envelope = newEnvelope(); envelope.setOutputSoapObject(params.GetSoapParams()); new InsertPersonResponse().register(envelope); return (InsertPersonResponse)Transport(params.GetSoapAction(), envelope); }
In this method is called the InsertPersonResponse().register(envelope) but don´t call the Person.register(envelope). If i add this line it works fine.
<s:element name="InsertPerson"> <s:complexType> <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="person" type="tns:Person"/> </s:sequence> </s:complexType> </s:element> <s:complexType name="Person"> <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="FirstName" type="s:string"/> <s:element minOccurs="0" maxOccurs="1" name="LastName" type="s:string"/> </s:sequence> </s:complexType>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I’m testing the wsdl2ksoap tool and it fail me with the attached wsdl.
I think the problem is in the ServiceSoap class method InsertPerson. The generated code is the following:
In this method is called the InsertPersonResponse().register(envelope) but don´t call the Person.register(envelope). If i add this line it works fine.
The text was updated successfully, but these errors were encountered: