hi all,

i try to deploy this simple service in axis2

@ServiceMode(value=Mode.MESSAGE)
@WebServiceProvider
public class simpleService implements Provider<SOAPMessage>{
        public SOAPMessage invoke(SOAPMessage request){
                return request;
        }
}

I need to point to http://localhost:8080/axis2/services/simpleService/invoke
to reach it, but it should be reached from
http://localhost:8080/axis2/services/simpleService/everything_or_nothing/i_want
... maybe i did something wrong with deployment? I used this service.xml


<service name="simpleService">
        <parameter name="ServiceClass" locked="false">
                samples.simpleService
        </parameter>
        <messageReceivers>
             <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out";
                       
class="org.apache.axis2.jaxws.server.JAXWSMessageReceiver"/>
        </messageReceivers>
</service>

-- 
View this message in context: 
http://www.nabble.com/-AXIS2--Jaxws-service-deploy-question-tf4640955.html#a13254956
Sent from the Axis - User mailing list archive at Nabble.com.


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

Reply via email to