-
1. Re: Problem in passing parameters to .NET web service
thomas.diesler Dec 22, 2004 10:21 AM (in response to prasanna_b2001)How is this related to JBoss.NET?
You can turn on debugging for org.apache.axis to get a better understanding of what is going on. -
2. Re: Problem in passing parameters to .NET web service
prasanna_b2001 Jan 3, 2005 7:02 AM (in response to prasanna_b2001)Hi Thomas
I am using Apache Axis for Java client to access the .NET web service. I am able to invoke the .NET WS but i am not able to pass the parameters. In the .NET WS the parameters are received as NULL values. I searched the internet and found that AXIS uses SOAP RPC encodying style and .NET by default uses Document/Literal. I changed that also in the .NET WS. I dont know what else i have to do in the .NET side since i dont have any idea in .NET.
I am pasting my Java client here
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;
import javax.xml.rpc.ParameterMode;
import org.apache.axis.encoding.XMLType;
import org.apache.axis.description.OperationDesc;
import org.apache.axis.message.RPCElement;
public class WSClient
{
public static void main(String [] args) throws Exception
{
System.out.println("Before WEB SERVICE");
String endpoint = "http://eproindia28/createsubscription-WS/Service1.asmx";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName("HelloWorld");
System.out.println("---------5--------------");
call.setSOAPActionURI("http://tempuri.org/HelloWorld");
call.addParameter("strRet", org.apache.axis.Constants.XSD_STRING, ParameterMode.IN);
call.setReturnClass(String.class);
System.out.println("-----6--getMessageContext()------------"+call.getMessageContext());
System.out.println("-----6--getOperation() ------------"+call.getOperation() );
System.out.println("-----6--getPortName() ------------"+call.getPortName());
System.out.println("-----6--getSOAPActionURI()------------"+call.getSOAPActionURI());
System.out.println("-----6--getUsername()------------"+call.getUsername());
System.out.println("-----6--getEncodingStyle()------------"+call.getEncodingStyle());
System.out.println("-----6--getService()------------"+call.getService());
System.out.println("-----6--getOperationName()------------"+call.getOperationName());
System.out.println("-----6--getWSDLDocumentLocation()------------"+service.getWSDLDocumentLocation() );
try
{
String strTemp = (String)call.invoke( new Object[] {"HI prasanna this is a test input to the .NET WS"});
System.out.println("---------strTemp--------------"+strTemp);
}
catch (Exception e)
{
e.printStackTrace();
}
System.out.println("AFTER WEB SERVICE --->");
}
}
Please tell me where i am going wrong...
Thanks in Advance
Prasanna -
3. Re: Problem in passing parameters to .NET web service
prasanna_b2001 Jan 3, 2005 7:06 AM (in response to prasanna_b2001)Hi Thomas
Can you please tell me how to turn on debugging in AXIS?
Thanks
Prasanna -
4. Re: Problem in passing parameters to .NET web service
thomas.diesler Jan 3, 2005 1:00 PM (in response to prasanna_b2001)<category name="org.apache.axis"> <priority value="DEBUG"/> </category>
in ${jboss.server.conf.dir}/log4j.xml