Thanks Raghu for ur response. I use tcpmon and can see the request and response xml. But from that can we tell for sure that the data in request object is passing in a serialized format and not in a binary format. My request object looks as below:
-------------------------------- POST /livecluster/services/SimpleJavaAdder HTTP/1.1 Content-Type: text/xml; charset=UTF-8 SOAPAction: "" User-Agent: Axis2 Authorization: Basic dGVzdDp0ZXN0 Host: abc-def.nk.sb.com:1234 Transfer-Encoding: chunked 2f0 <?xml version='1.0' encoding='UTF-8'?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body> <ns4:addArray xmlns:ns4="http://grid.gwm.citi.com"> <ns4:inputSetArray> <ns4:calcName>A</ns4:calcName> <ns4:intVar1>1220</ns4:intVar1> <ns4:intVar2>1420</ns4:intVar2> </ns4:inputSetArray> <ns4:inputSetArray> <ns4:calcName>B</ns4:calcName> <ns4:intVar1>2021</ns4:intVar1> <ns4:intVar2>4021</ns4:intVar2> </ns4:inputSetArray> <ns4:inputSetArray> <ns4:calcName>C</ns4:calcName> <ns4:intVar1>2022</ns4:intVar1> <ns4:intVar2>4022</ns4:intVar2> </ns4:inputSetArray> <ns4:inputSetArray> <ns4:calcName>D</ns4:calcName> <ns4:intVar1>2023</ns4:intVar1> <ns4:intVar2>4023</ns4:intVar2> </ns4:inputSetArray> </ns4:addArray> </soapenv:Body> </soapenv:Envelope>0 ------------------------------------- Thanks and Regards Lokajit Tikayatray -----Original Message----- From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 6:18 PM To: [email protected] Subject: RE: How to know how the data is passing between client and server. You can use tcpmon to see the SOAP requests & responses. You can download tcpmon from https://tcpmon.dev.java.net/ Thanks Raghu -----Original Message----- From: Tikayatray, Lokajit [mailto:[EMAIL PROTECTED] Sent: Thursday, April 10, 2008 3:10 PM To: [email protected] Subject: How to know how the data is passing between client and server. Hi all, I am a newbie to this web service. I have a doubt regarding the way the data is being passed between client and the server. My doubt is, how can I find out how my data from client is getting passed to my server i.e. whether the data is getting serialized or it is passing as binary data. Thanks and Regards Lokajit Tikayatray --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
