Re: Transfer

2002-10-09 Thread Scott Nichol
The base64-encoded data compresses pretty nicely with gzip, though. Scott Nichol - Original Message - From: "Skip Marler" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 09, 2002 2:31 PM Subject: Re: Transfer > You can attach the file with

Re: Transfer

2002-10-09 Thread Skip Marler
You can attach the file within the SOAP envelope, but, it will use encoding. I can't give the exact calculation but for every 6 bytes you want to send you actually send 8. Regards, Skip Marler www.parasoft.com [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL P

Re: Transfer

2002-10-09 Thread Scott Nichol
Reasons you might want to use SOAP: 1. You want to process the document as soon as it is received 2. You want the sender to know the result of the processing 3. You want to write as little plumbing as possible Here's what I would do in a couple situations 1 = don't care, 2 = no, 3 = yes I woul

RE: Transfer

2002-10-09 Thread SoumenS
SOAP is XML based application protocol mapped to some transport protocol. Since you are transferring large file, transport protocol issues are involved. I beleive, you need to search for a SOAP implementation on some suitable transport protocol. The document should be transferred as an attachment.

Re: transfer of compressed data

2002-07-18 Thread Niket Anand
: Re: transfer of compressed data I am not sure if ur trying to send the files as a soap attachment...   Here is the peice of  code i used to send files as SOAP attachement..it works for a zip file too.      File f = new File(pathname);       //Create a

Re: transfer of compressed data

2002-07-17 Thread Niket Anand
Thanks Ramya for sending piece of code.I was waiting for it. Thanks, Niket  - Original Message - From: Ramya Virudhs To: [EMAIL PROTECTED] Sent: Wednesday, July 17, 2002 11:48 PM Subject: Re: transfer of compressed data I am not sure if ur trying to send

Re: transfer of compressed data

2002-07-17 Thread Ramya Virudhs
I am not sure if ur trying to send the files as a soap attachment...   Here is the peice of  code i used to send files as SOAP attachement..it works for a zip file too.      File f = new File(pathname);       //Create a FileDataSource with the uploaded file      FileDataSou

RE: transfer of compressed data

2002-07-16 Thread JJ
Hi Andy Can you also transfer XmlData from the SOAPServer to the SOAPClient? John > I am able to transfer xml files to SOAP server from Client using >DataHandler. -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: transfer of compressed data

2002-07-16 Thread Andrew Yang
Use SOAP with attachment, put zip file as an attachment. Andy > Hi All, > I am able to transfer xml files to SOAP server from Client using >DataHandler.But I am facing problem in transferring compressed data such >as zip archives using the same concept. > Can anybody tell me how to transfe

Re: Transfer a class file within a SOAP response

2001-06-28 Thread Sanjiva Weerawarana
Yes, send it as a byte[] basically .. which would get base64 encoded and sent over soap. Sanjiva. - Original Message - From: "Chris Francis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 9:01 AM Subject: RE: Transfer a class file

RE: Transfer a class file within a SOAP response

2001-06-28 Thread Chris Francis
Maybe base64 encode it first? -Original Message- From: Ralf Bierig [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 14:01 PM To: SOAP Mailing List SOAP Mailing List Subject: Transfer a class file within a SOAP response How can I transfer a Java Class file within a SOAP response