Re: streams

2006-04-12 Thread Paul Fremantle
Axis2 sorts this out using MTOM and DataHandlers. The data can be streamed, and also doesn't need to be base64 encoded.PaulOn 4/11/06, ciaran dunn <[EMAIL PROTECTED]> wrote: Also, and the reason I replied to the original message, what is the nature of your data in the byte[] part. Ive worked on wo

Re: streams

2006-04-11 Thread ciaran dunn
Also, and the reason I replied to the original message, what is the nature of your data in the byte[] part. Ive worked on working axis code that has had to deal with arbitary incoming byte[]'s that might be bit maps/embedded xml data/whatever and Ive never really had a problem with axis as such. Mo

RE: streams

2006-04-11 Thread Tom Jordahl
to an operation and you will have to change many things in the call sequence. -- Tom Jordahl -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 23, 2006 10:34 AM To: axis-dev@ws.apache.org Subject: Re: streams Sorry, this is the mail I wanted to

Re: streams

2006-03-23 Thread [EMAIL PROTECTED]
Can Axis generate this? If not, would it be too difficult to get it work like that? Kind regards Mensaje original De: [EMAIL PROTECTED] Recibido: 23/03/2006 13:45 Para: , <[EMAIL PROTECTED]> Asunto: Re: streams Can you not in your client code simply do this? myInputStream.toS

Re: streams

2006-03-23 Thread [EMAIL PROTECTED]
I'm trying to avoid storing the whole contents in memory so, I think that's not a solution. Lets suppose I define a wsdl element ... and a message called fileRequest. Then, WSDL2Java would translate it into something like private void file(FileRequest f

Re: streams

2006-03-23 Thread ciaran dunn
Can you not in your client code simply do this? myInputStream.toString().getBytes() Cheers, CiaranOn 3/23/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi!I have a web service developed with Axis. In my WSDL I define a message type in which I include a base64 binary element. WSDL2Javagenerates