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
Since the changes are not that big, would it be nice to add this support...
SOAP 1.1 uses namespace http://schemas.xmlsoap.org/wsdl/soap/ SOAP 1.2 uses namespace http://schemas.xmlsoap.org/wsdl/soap12/
In SOAP 1.2:
<binding name="EmployeeServiceImplPortBinding" type="tns:EmployeeServiceImpl"> <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/> <operation name="findEmployeeById"> <soap12:operation soapAction=""/> <input><soap12:body use="literal"/></input> <output><soap12:body use="literal"/></output> </operation><operation name="create"> <soap12:operation soapAction=""/> <input><soap12:body use="literal"/></input> <output><soap12:body use="literal"/></output> </operation> </binding>
in SOAP 1.1:
<binding name="EmployeeServiceImplPortBinding" type="tns:EmployeeServiceImpl"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/> <operation name="findEmployeeById"> <soap:operation soapAction=""/> <input><soap:body use="literal" namespace="http://jaxb.ws.jax.samples.chathurangaonline.com/"/></input> <output><soap:body use="literal" namespace="http://jaxb.ws.jax.samples.chathurangaonline.com/"/></output> </operation><operation name="create"> <soap:operation soapAction=""/> <input><soap:body use="literal" namespace="http://jaxb.ws.jax.samples.chathurangaonline.com/"/></input> <output><soap:body use="literal" namespace="http://jaxb.ws.jax.samples.chathurangaonline.com/"/></output> </operation> </binding>
Basically the URL changed and the tag from soap to soap12.
soap
soap12
The text was updated successfully, but these errors were encountered:
This should be configurable. Can you make a pull request ?
Sorry, something went wrong.
I'm testing more options / stuff required in some SOAP integration processes and then I should create a PR with this add-ons =)
No branches or pull requests
Since the changes are not that big, would it be nice to add this support...
In SOAP 1.2:
in SOAP 1.1:
Basically the URL changed and the tag from
soap
tosoap12
.The text was updated successfully, but these errors were encountered: