This is how I am making a String array
String[] str = new String[1];
str[0] = "2";
I am passing this array to a webservice method. My client call is as follows
Call call = (Call)_service.createCall();
call.setTargetEndpointAddress( new java.net.URL(_endpoint) );
call.setOperationName( "removeRoles" );
call.addParameter("arg0", XMLType.SOAP_ARRAY, ParameterMode.IN);
call.invoke( new Object [] {str});
This removeRoles method of the webservice returns void so I am simply
invoking the service without expecting anything in return.
However when I run this client it shows nothing happeneing in tcpmon. No
request is going and obviously no response is coming back.
Any idea if I am missing something here.
Please help
Vaishakhi