Hi Valerio,

I get the following error from the server :

AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
 faultSubcode:
faultString: org.apache.axis.types.URI$MalformedURIException: Cannot initialize URI with empty parameters.
 faultActor:
 faultNode:
 faultDetail:
{http://xml.apache.org/axis/}stackTrace:org.apache.axis.types.URI$MalformedURIException: Cannot initialize URI with empty parameters.
 at org.apache.axis.types.URI.initialize(URI.java:614)
 at org.apache.axis.types.URI.<init>(URI.java:311)

...........


You need to make sure that all deployed services (and their clients) use non-empty SOAP Action-URIs.

Your wsdl files' binding sections should look like the following example:

<wsdl:binding name="foo" type="foo:bar">
  <wsdl:operation name="getIceCream">

<!-- the following line is absolutely required if you use ws-addressing handlers in the general flows -->
  <soap:operation soapAction="http://foobar.org/icecream"/>

  <wsdl:input>
    <soap:body use="literal"/>
  </wsdl:input>
  <wsdl:output>
    <soap:body use="literal"/>
  </wsdl:output>
</wsdl:operation>



regards,

        -hannes

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to