Barry, If the file is large, is that a feasible way to do it?
-----Original Message----- From: Barry White [mailto:[EMAIL PROTECTED] Sent: Friday, August 29, 2003 5:09 PM To: [EMAIL PROTECTED] Subject: Re: transferring xml files Hi Tizo, could you not just put the XML document in the SOAP body and extract it at the other side: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <mail> <to>Tizo</to> <from>Barry</from> <msg>Won't this work?</msg> </mail> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Barry At 20:25 29/08/2003, you wrote: >Hi, > >I am using apache soap and java, and I need to transfer xml files, maybe >big ones. > >The first thing that came to my head, is sending the xml files as strings, >but I would like to know which is the best way to send xml files via soap, >and, in case that sending them as strings is ok, if there is any kind of >limitations. > >Thanks very much, > >Tizo