Forum Discussion
ply
17 years agoOccasional Contributor
1) RFM => The error log window gives information. So you have to declare the used namespace.
2) Add declarations in the "header" for instance :
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/
xmlns:impl="http://localhost:8080/axis/Calculator.jws"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:con="http://eviware.com/soapui/config">
3) As the targetNamespace is http://localhost ...
try
xmlns:imp="htttp://localhost ... instead of xmlns:impl="http://www.example.org/sample/"
With these modifications, the webservice is well known by SoapUI, and you can use SoapUI to test it.
PHL.
2) Add declarations in the "header" for instance :
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/
xmlns:impl="http://localhost:8080/axis/Calculator.jws"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:con="http://eviware.com/soapui/config">
3) As the targetNamespace is http://localhost ...
try
xmlns:imp="htttp://localhost ... instead of xmlns:impl="http://www.example.org/sample/"
With these modifications, the webservice is well known by SoapUI, and you can use SoapUI to test it.
PHL.