Re: Best way to send XML over Soap?

2001-08-10 Thread Michael Svoboda
: Thursday, August 09, 2001 11:35 PM |To: [EMAIL PROTECTED] |Subject: Re: Best way to send XML over Soap? | | |I am doing the same thing, this is what I have found. You can |send the |XML as a string, but if that String gets to large there can be |performance problems on the order

Re: Best way to send XML over Soap?

2001-08-10 Thread Steeve Gilbert
Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: Steeve Gilbert/G_STGEORGES/CANAM_MANAC) Subject: Re: Best way to send XML over Soap? Does anybody can post examples to the different options: - Sending XML as a String - Unmarshal XML to the envelope - Sending XML

Re: Best way to send XML over Soap?

2001-08-10 Thread Rich Catlett
Message- |From: Rich Catlett [mailto:[EMAIL PROTECTED]] |Sent: Thursday, August 09, 2001 11:35 PM |To: [EMAIL PROTECTED] |Subject: Re: Best way to send XML over Soap? | | |I am doing the same thing, this is what I have found. You can |send the |XML as a string, but if that String gets to large

Best way to send XML over Soap?

2001-08-09 Thread Michael Svoboda
I'd like to send plain XML inside the envelope from the client to the server and back. (I use XML because the client doesn't have to be written in Java and because I don't wan't to write Serializer/Deserializer) I know that one could use a literal_xml encoding or just put the whole XML-file in

Re: Best way to send XML over Soap?

2001-08-09 Thread Rich Catlett
I am doing the same thing, this is what I have found. You can send the XML as a string, but if that String gets to large there can be performance problems on the order of a minute or two. Sending the XML in the body of the Envelope you have to unmarshall it into an envelope and then you

RE: Best way to send XML over Soap?

2001-08-09 Thread Huong Phan Thu
, August 09, 2001 11:35 PM |To: [EMAIL PROTECTED] |Subject: Re: Best way to send XML over Soap? | | |I am doing the same thing, this is what I have found. You can |send the |XML as a string, but if that String gets to large there can be |performance problems on the order of a minute or two