RE: Sending binary data as byte array

2005-01-31 Thread Arijit Mukherjee
on during the serialization/deserialization phase. Have anyone encountered similar problems? Regards Arijit >-Original Message- >From: Hamilton, Ian [IT] [mailto:[EMAIL PROTECTED] >Sent: 28 January 2005 17:44 >To: [EMAIL PROTECTED] >Subject: RE: Sending binary data as byte

RE: Sending binary data as byte array

2005-01-28 Thread Hamilton, Ian [IT]
Steve, Check out this article: http://www-106.ibm.com/developerworks/library/ws-tip-noattach.html it gives some insight into what you ask. I also know that sending binary data as a byte array increases the data's size by about 33%, according to what I've read. That's becaus

Sending binary data as byte array

2005-01-28 Thread Brammer, Steve
Hi, I have implemented a web service using axis and I consume the web service from .Net. I have a need to send and receive binary data (office documents) but I haven't been able to work out how to use DIME attachements, so I have worked around this by simply turning the filestream into a

RE: Use Axis to send binary Data

2004-06-30 Thread Jayaraman, Venkatesh
DIME for binary data -Venky -Original Message- From: Mayur Shetye [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 30, 2004 2:51 PM To: [EMAIL PROTECTED] Subject: Re: Use Axis to send binary Data you can send binary data by encoding it in base64 or you can send it using attachments

Re: Use Axis to send binary Data

2004-06-30 Thread Mayur Shetye
you can send binary data by encoding it in base64 or you can send it using attachments (MIME or DIME) --- Samuel Cheung <[EMAIL PROTECTED]> wrote: > Hi, > > I am new to Axis. I would like to know if there is > an example/tutorial of > sending Binary data using Axis? &

Use Axis to send binary Data

2004-06-30 Thread Samuel Cheung
Title: Use Axis to send binary Data Hi, I am new to Axis. I would like to know if there is an example/tutorial of sending Binary data using Axis? Thank you for any pointer. Sam

RE: Binary Data

2004-04-20 Thread Jerry Jalenak
nts? Thanks. Jerry Jalenak Development Manager, Web Publishing LabOne, Inc. 10101 Renner Blvd. Lenexa, KS 66219 (913) 577-1496 [EMAIL PROTECTED] > -Original Message- > From: Tom Nelson [mailto:[EMAIL PROTECTED] > Sent: Monday, April 19, 2004 2:10 PM > To: [EMAIL PROTE

RE: Binary Data

2004-04-20 Thread Paulo Soares
I found out that the two reliable ways to exchange binary data between axis and .NET is to use a byte[] or DIME. Both work well but DIME is more memory efficient. Best Regards, Paulo Soares > -Original Message- > From: Jerry Jalenak [mailto:[EMAIL PROTECTED] > Sent: Monday,

RE: Binary Data

2004-04-19 Thread Jerry Jalenak
lenak Development Manager, Web Publishing LabOne, Inc. 10101 Renner Blvd. Lenexa, KS 66219 (913) 577-1496 [EMAIL PROTECTED] > -Original Message- > From: Tom Nelson [mailto:[EMAIL PROTECTED] > Sent: Monday, April 19, 2004 2:10 PM > To: [EMAIL PROTECTED] > Subject: Re: Bin

Re: Binary Data

2004-04-19 Thread Tom Nelson
wrote: Hi All, I'm needing to return binary data (.tif images) from an Axis webservice to both Java clients and C# clients. Is there a recommended best-practice for doing this? I found a hit in google on using the javax.activation.DataHandler to the binary data to a SOAP message as an atta

Binary Data

2004-04-19 Thread Jerry Jalenak
Hi All, I'm needing to return binary data (.tif images) from an Axis webservice to both Java clients and C# clients. Is there a recommended best-practice for doing this? I found a hit in google on using the javax.activation.DataHandler to the binary data to a SOAP message as an attachment

Re: Sending binary data contained within a map?

2003-02-18 Thread Tom Oinn
[EMAIL PROTECTED] wrote: Hi Tom, As far as I know, the only way to make Axis automatically encode your > data as base64, is to have the datatype (of your SOAP method) set to > "byte[]". So a way around your problem could be to e.g. create a > complex type that holds (among other things) a fiel

RE: Sending binary data contained within a map?

2003-02-18 Thread Eirik.Wahl
nt: 18. februar 2003 12:00 > To: [EMAIL PROTECTED] > Subject: Sending binary data contained within a map? > > > Hi all, > > This may be a simple question, if so I'd be delighted... I have a web > service that returns results wrapped up in a Map, all well > and

Sending binary data contained within a map?

2003-02-18 Thread Tom Oinn
Hi all, This may be a simple question, if so I'd be delighted... I have a web service that returns results wrapped up in a Map, all well and good, it works just fine. The current problem I'm having is that say my service needs to return some binary data, it puts a byte array into th

RE: How to transfer Binary data/images

2002-04-10 Thread Ng, Charles
Using MIME attachments is probably better than inlining binary data in a SOAP message since you do not have to base64 encode and decode it. On average, how much bigger is the base64 encoded data compared to the data itself? Charles -Original Message- From: Stan Jordan [mailto:[EMAIL

RE: How to transfer Binary data/images

2002-04-10 Thread Chester Chen
Thanks Stan. Chester > -Original Message- > From: Stan Jordan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 10, 2002 12:45 PM > To: [EMAIL PROTECTED] > Subject: Re: How to transfer Binary data/images > > > Chester... > You might want to look at this

Re: How to transfer Binary data/images

2002-04-10 Thread Stan Jordan
ROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 10, 2002 11:12 AM Subject: How to transfer Binary data/images > Hi, > I need to download a image (.jpeg) files from server to client (VB). > Should I use SOAP message to get the URL for the image, then use HTTP to > download

How to transfer Binary data/images

2002-04-10 Thread Chester Chen
Hi, I need to download a image (.jpeg) files from server to client (VB). Should I use SOAP message to get the URL for the image, then use HTTP to download the image based on obtained URL, or Should I get the binary data directly through SOAP ? What's the best practice for such