I know I'm doing this wrong, but I can't seem to find a good description of how to do it right.
What I'm trying to do is deploy two different soap services within the same web app, where the two different services are in different classes. Am I out of luck? Or just not trying correctly? <isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment" id="urn:WSServer"> <isd:provider type="java" scope="Request" methods="SubmitWS"> <isd:java class="org.one.ws.server" static="true"/> </isd:provider> <isd:provider type="java" scope="Request" methods="SubmitWS_2.0"> <isd:java class="org.one.ws2.server" static="true"/> </isd:provider> </isd:service>