I have a java page for simple web services client that only needs to call a remote method on a web service and that returns a string containing XML data.
but when I invoke like :
String[] res = (String[]) call.invoke( new Object[] { "Y" } );
here call is a object of org.apache.axis .client.Call;
From here I got a error "Can not parse the messages"
How can I resolve this particular error?
Can anyone help me?
but when I invoke like :
String[] res = (String[]) call.invoke( new Object[] { "Y" } );
here call is a object of org.apache.axis .client.Call;
From here I got a error "Can not parse the messages"
How can I resolve this particular error?
Can anyone help me?
Comment