New Line Feed

2002-03-13 Thread raja
Hi All, When i send a string containing new line feeds through SOAP, i find that the same is removed at the receiving end. I am enclosing the data in CDATA. Can anyone tell me what the problem is ?

Error

2001-11-27 Thread raja
/faultdetail/error/"; > -2146823238 - - 800a13ba what could be the problem ??? tia raja

RE: No Deserializer found Exception...............

2001-08-29 Thread Raja Gangavarapu
   Fault fault = resp.getFault();         System.err.println("Generated fault: ");         System.out.println(" Fault Code = " + fault.getFaultCode());         System.out.println(" Fault String = " + fault.getFaultString());     }     return retValue; } Can any one who solved this problem help me Thanks a lot Raja

RE: NoSuchMethodError in QName of SOAP2.2

2001-07-04 Thread raja
Hi, there are lot of problems with SOAP 2.2. This error might be of 2 reasons 1. You have not exposed the method in Deployment descriptor. 2. The class has not been put in the web-inf classes . if not, try using the xml apache for soap 1.4 version. This should solve the problem. Raja Innova

RE: SOAP 2.2 & Tomcat Error: <404 Not found>

2001-07-03 Thread raja
yes!! i too have the same notion Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 8:15 PM To: [EMAIL PROTECTED] Subject: Re: SOAP 2.2 & Tomcat Error: <404 No

RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP)

2001-06-28 Thread raja
can u send the code ? Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 5:53 PM To: '[EMAIL PROTECTED]' Subject: RE: Urgent(is there any limit for t

RE: Urgent(is there any limit for the size of data which can be trans ported through SOAP)

2001-06-28 Thread raja
register the serializer/deserializer both at the server side ( thru the deployment descriptor.xml) and at the client side too ( mapx). Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: Urgent(is there any limit for the size of data which can be trans ported through SOAP)

2001-06-28 Thread raja
hi this is no way related to the size of the hashtable. Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 5:43 PM To: '[EMAIL PROTECTED]' Subject:

RPC / Message Router

2001-06-27 Thread raja
hi all can anyone let me know the advantages/disadvantages in using RPC router over MESSAGE ROUTER and vice versa in SOAP. are there any situations where one serves better than the other ? Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023

RE: Sending paramters

2001-06-21 Thread raja
Hi Thank you. Could you also let me know how to pass an object and access the same at the server side ? I have implemented the methods as suggested and it works fine now. Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: Matthew J

RE: No deserializer...

2001-06-21 Thread raja
i am sorry, that was for RPC and not for message driven SOAP. Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 21, 2001 11:29 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED

RE: No deserializer...

2001-06-21 Thread raja
Hi , Did you set the soap mapping registry ? you need to set it by -- call.setSOAPMappingRegistry(smr); where call is the calling object and smr is the SOAP mapping registry object. Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From

Sending paramters

2001-06-21 Thread raja
bean sb = new samplebean(); try { System.out.println( "Received from client " +str ); sb.name = "raja"; } cat