hi;
i use this code to call web service
---------------------------------------------------------------------------------------------------
try
{
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.addParameter(new QName("http://www.intalio.com/",
"start"), new
QName("http://www.w3.org/2001/XMLSchema", "string"), String.class,
ParameterMode.IN);
call.setOperationName("receive");
call.setOperationStyle(org.apache.axis.constants.Style.DOCUMENT);
call.setOperationUse(org.apache.axis.constants.Use.LITERAL);
call.setReturnType(org.apache.axis.Constants.XSD_STRING);
this.result = (String)call.invoke( tab );
System.out.println("Got result : " + this.result);
}
---------------------------------------------------------------------------------------------------
can someone tell me how to call WS (ws have 2 parameters input) using invoke
method ?
thanks
--
View this message in context:
http://www.nabble.com/client-WS-tf4035140.html#a11463131
Sent from the Axis - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]