Hi,
My server application, till now, has a single URN server and all the
soap methods used to be under that URN. Now, we are planning to
distribute the soap services into different URNs and thus want to
declare multiple URNs in my deployment descriptor file. We are using
soap2.3 with MessageRouter implementation. 

My current deployment descriptor looks like this:

************************************************************************
<isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment";
             id="urn:MySOAPService" type="message">
  <isd:provider type="java" scope="Application" methods=" methodA,
methodB, methodC, method, methodE, methodF ">
    <isd:java class="com.mycompany.soap.SOAPHandler"/>
  </isd:provider>
 
<isd:faultListener>org.apache.soap.server.DOMFaultListener</isd:faultLis
tener>
</isd:service>
************************************************************************
***

Now, I want to distribute such that methodA, methodB, methodC remain in
com.mycompany.soap.SOAPHandler.java and move methodD, methodE, and
methodF into com.mycompany.soap.SOAPHandler2.java. I figured we cannot
declare multiple URNs with in a single deployment descriptor file.

Can I know how to accomplish the above?

Thanks in advance.


Reply via email to