Re: [from soap-user] Re: urgent help needed with:Error buildingresponse evelope

2002-08-21 Thread Scott Nichol
;[EMAIL PROTECTED]> Sent: Wednesday, August 21, 2002 1:46 PM Subject: Re: [from soap-user] Re: urgent help needed with:Error building response evelope i am using soap2_2 >From: Scott Nichol >To: WANG xiulan , [EMAIL PROTECTED] >Subject: [from soap-user] Re: urgent help needed with:Error

[from soap-user] Re: urgent help needed with:Error building responseevelope

2002-08-20 Thread Scott Nichol
What version of Apache SOAP are you using? Scott Nichol - Original Message - From: "WANG xiulan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, August 20, 2002 11:01 AM Subject: urgent help needed with:Error building response evelope Hi everyone, w

Re: urgent

2001-08-23 Thread santosh patankar
Hi Raj, This problem comes when you try calling MS service from Java client. You need to modify java client and add deserializer for Result. If you look XML call from MS service it has xxx. Thus no type is specified as either string/int etc. in message. Thats why you need to add following li

RE: urgent

2001-08-23 Thread Sergei Meleshchuk
Title: urgent Sorry for typo: *s2 = SysAllocString(“myRetVal”); should be *s2 = SysAllocString(L“myRetVal”);   Sergei Meleshchuk WMI 425-705-8547   -Original Message- From: rajashekar [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 23, 2001 10:36 AM To: [EMAIL PROTECTE

RE: urgent

2001-08-23 Thread Sergei Meleshchuk
Title: urgent First, you have to replace *s2 = s1 by *s2 = SysAllocString(s1) – otherwise it won’t work. Then, the simple trick of bouncing back the request won’t work – soap format requires different format for ret vals. I cannot guess what kind of soap server you use, and what it does wi

Re: URGENT

2001-08-17 Thread Christoph C. Cemper - privat
Title: URGENT Raja,   in Apache SOAP there is a cookie-session-tracking feature...   depends on the VC++ server-implementation of course, but Apache SOAP supports session-tracking via cookies...   the MS Soap Toolkit also supports cookies and in .NET (beta2) even URL-encoded session tracking

Re: Urgent SOAP Question

2001-07-25 Thread Mehashah
I resolved the issue, I was setting some mappings for primitive objects such as String and that caused the whole thing to go haywire. I think this applies to people getting incorrect data or missing or bogus data from one point to another through soap.

Re: Urgent SOAP Question

2001-07-24 Thread Mehashah
d incoming > response, and the exception generated. What server are you connecting to? > > David Melgar > Web Services Toolkit Development > Emerging Technologies > [EMAIL PROTECTED] > > > [EMAIL PROTECTED] on 07/24/2001 12:39:20 PM > > Please respond to [EMAIL PROTECT

Re: Urgent SOAP Question

2001-07-24 Thread David Melgar
What errors did you get when using UDDIProxy? David Melgar Web Services Toolkit Development Emerging Technologies [EMAIL PROTECTED]

Re: Urgent SOAP Question

2001-07-24 Thread Mehashah
I now remmeber why the UUDIProxy didn't work for me and may be you would know the answer. For example in SaveTModel When I used UDDIProxy it uses the savetoxml method to convert java object to xml it creates the following <.. on the server side it complains that it can't matc

Re: Urgent SOAP Question

2001-07-24 Thread Mehashah
I tried using UDDIProxy but I get errors so I tried this approach. I dont get an error but when I try to acces the object("SaveBusiness") on my UDDI server I get nulls. In a message dated Tue, 24 Jul 2001 10:54:43 AM Eastern Daylight Time, "David Melgar" <[EMAIL PROTECTED]> writes: > UDDI4J

Re: Urgent SOAP Question

2001-07-24 Thread David Melgar
UDDI4J typically uses the messaging API in soap and handles its own request message generation and processing. I assume your going through all this effort for some other reason? You don't describe what failure you get. Is no response returned? Is the deserialization of the response failing? Dav

RE: URGENT: I'm in big trouble with soap-problem... Please Help me!!!

2001-07-19 Thread Elhadi barkat
In my case I had to change the encoding in the RPCRouterServlet so my problem wasn't on client-side but on the server-side(responses sent by the Servlet) have a look at Response Class in Apache's SOAP to see how the response is parsed. Probably, there you'll find the statement to modify Hope this

Re: Urgent help needed

2001-07-01 Thread Naggi Rao
hi , Thanxs for the help.. But it was really my bad I had not read the XML Spec.. - Original Message - From: "Oleg Dulin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, June 29, 2001 5:26 PM Subject: Re: Urgent help nee

Re: Urgent help needed

2001-06-29 Thread Oleg Dulin
> I was wondering if there was a decent way to escape the & sign ? > May be URLEncoding the characters before stuffing them in to literal > XML ? > Would appreciate a quick fix !! URLEncoding worked for me, but you can also use & (I think) to represent an ampersand. -- Regards, Oleg Dulin --

Re: Urgent help needed

2001-06-29 Thread Naggi Rao
hi, My bad .. I could use & and stuff... - Original Message - From: "Naggi Rao" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 29, 2001 8:42 AM Subject: Urgent help needed > Hi all, > Its more of a XML Question .. > I am passing a few elements (as literal XML) to my WebS

RE: Urgent help needed

2001-06-29 Thread Joseph Stanko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Escape it as: & For more info, see section 2.4 of the XML spec: http://www.w3.org/TR/REC-xml#syntax - -Joseph > -Original Message- > From: Naggi Rao [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 29, 2001 8:42 AM > To: [EMAIL PROTECTED] >

Re: Urgent help needed

2001-06-29 Thread Norbert Wagner
>I was wondering if there was a decent way to escape the & sign ? try these: '&' -> & '<' -> < '>' -> > ciao, Norbert

Re: Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Scott Nichol
not create a DOM for messages it sends. Scott - Original Message - From: "Anil Kumar, Anumakonda" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 9:28 AM Subject: RE: Urgent(is there any limit for the size of data which can be transported thro

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

2001-06-28 Thread Anil Kumar, Anumakonda
ilto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 9:05 PM To: [EMAIL PROTECTED] Subject: Re: Urgent(is there any limit for the size of data which can be transported through SOAP) I was getting the same problem using Apache SOAP 2.1 and Xerces 1.2.3 and 1.3.0. Debugging led me to believe that Xe

Re: Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Scott Nichol
I was getting the same problem using Apache SOAP 2.1 and Xerces 1.2.3 and 1.3.0. Debugging led me to believe that Xerces was at fault, but I never tracked it down to any particular code within Xerces. However, I got past this by moving to a nightly build of Apache SOAP 2.1 that supported JAXP an

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

2001-06-28 Thread Anil Kumar, Anumakonda
M To: [EMAIL PROTECTED] Subject: RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP) Anil, Have you tried splitting the data up and running it all through in blocks? Perhaps a data content issue? (Just tossing some suggestions out there). Let us know

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

2001-06-28 Thread D Johnson
: Thursday, June 28, 2001 7:36 AM To: '[EMAIL PROTECTED]' Subject: RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP) Hi raja, this data i am sending across . i am attaching text doc. Thanks & regards Anil -Original Message- From

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

2001-06-28 Thread Anil Kumar, Anumakonda
Hi raja, this data i am sending across . i am attaching text doc. Thanks & regards Anil -Original Message- From: raja [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 8:25 PM To: [EMAIL PROTECTED] Subject: RE: Urgent(is there any limit for the size of data which can be t

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

2001-06-28 Thread Anil Kumar, Anumakonda
Hi raj, i have to go for SOAP 2.2 to over come this problem. is there any other way to solve this problem Thanks & regards, Anil -Original Message- From: Kumar Raj [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 8:21 PM To: [EMAIL PROTECTED] Subject: Re: Urgent(is there

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 transported through SOAP)

2001-06-28 Thread Kumar Raj
Hi ! You can find this addressed in the Trouble shooting section of the v2.2 doc. Regards Kumar Raj "Anil Kumar, Anumakonda" wrote: > Hi , > > If i send huge data through SOAP(hashtable which contains a lot of data), i > am getting this error. > Is there any limit for the size of data which c

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

2001-06-28 Thread Anil Kumar, Anumakonda
please help how to solve. -Original Message- From: raja [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 8:18 PM To: [EMAIL PROTECTED] Subject: RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP) hi sorry, the mail was sent by accident. you

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

2001-06-28 Thread Matteo Belloni
I think the same. Theo -Original Message- From: raja [mailto:[EMAIL PROTECTED]] Sent: giovedì 28 giugno 2001 14.18 To: [EMAIL PROTECTED] Subject: RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP) hi sorry, the mail was sent by accident. you

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

2001-06-28 Thread raja
hi sorry, the mail was sent by accident. you can always send large amounts of data. the exception clearly talks about the serializer/deserializer. all u need to do is use the default serializers available or implement one in case the datatypes are not supported to be serialized. u need to registe

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: Urgent(is the