Re: soap attachment error

2004-08-23 Thread gurcharan singh
ause it is filtered to accept only mail from >specific mail lists. >- Original Message -=20 >From: "gurcharan singh" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Sunday, August 22, 2004 3:33 PM >Subject: soap attachment error > > >> hi

Re: soap attachment error

2004-08-23 Thread Scott Nichol
- From: "gurcharan singh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 22, 2004 3:33 PM Subject: soap attachment error > hi! > I am attaching a zip file with the SOAP message and sending it to the web > service. Earlier I was able to run my code

Re: soap attachment error

2004-08-22 Thread Martin Gainty
How are you declaring this datatype in your WSDL? Martin- - Original Message - From: "gurcharan singh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 22, 2004 3:33 PM Subject: soap attachment error > hi! > I am attaching a zip file with the

soap attachment error

2004-08-22 Thread gurcharan singh
hi! I am attaching a zip file with the SOAP message and sending it to the web service. Earlier I was able to run my code properly but now sudennly i am getting this error - Generated fault: [Attributes={}] [faultCode=SOAP-ENV:Server] [faultString=Currently unsupported data type received:javax.a

Re: Extract Binary File(pdf) from SOAP Attachment

2004-03-09 Thread Daniel Zhang
Thanks, Scott! -Daniel Scott Nichol wrote: With SOAP 2.3.1, one uses the SOAPContext class to access attachments, and the SOAPContext instance is obtained from SOAPHTTPConnection. This means doing roughly SOAPHTTPConnection shc = new SOAPHTTPConnection() ... Call call = new Call(); call.setTra

Re: Extract Binary File(pdf) from SOAP Attachment

2004-03-09 Thread Scott Nichol
t; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 09, 2004 10:49 AM Subject: Re: Extract Binary File(pdf) from SOAP Attachment I am using Apache SOAP 2.3.1. Thanks. - Daniel Scott Nichol wrote: >Since you mention javax.xml.soap.AttachmentPart, I wonder if you are

Re: Extract Binary File(pdf) from SOAP Attachment

2004-03-09 Thread Daniel Zhang
ary_value Content-Type: application/pdf Content-Id: pdfnameB %PDF-1.4 ...pdf content... %%EOF Question: How can I extract pdf files from this SOAP attachment? First, I need to populate this soap file into a SOAPMessage object, then I tried to use javax.xml.soap.AttachmentPart class, I can u

Re: Extract Binary File(pdf) from SOAP Attachment

2004-03-08 Thread Scott Nichol
filtered to accept only mail from specific mail lists. - Original Message - From: "Daniel Zhang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 08, 2004 4:21 PM Subject: Extract Binary File(pdf) from SOAP Attachment Our client sent us a SOAP file in w

Extract Binary File(pdf) from SOAP Attachment

2004-03-08 Thread Daniel Zhang
: application/pdf Content-Id: pdfnameB %PDF-1.4 ...pdf content... %%EOF Question: How can I extract pdf files from this SOAP attachment? First, I need to populate this soap file into a SOAPMessage object, then I tried to use javax.xml.soap.AttachmentPart class, I can use getContentId() and getContentType

Re: SOAP attachment

2004-02-24 Thread Scott Nichol
Ying" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 24, 2004 1:03 PM Subject: SOAP attachment Hi there, I am trying to send a java object in soap attachment. I tried to set its content-type to be application/octet-stream, but it seemed it was not working.

SOAP attachment

2004-02-24 Thread Ying Ying
Hi there,   I am trying to send a java object in soap attachment. I tried to set its content-type to be application/octet-stream, but it seemed it was not working.   MimeBodyPart bp = new MimeBodyPart();   bp.setContent(new Double(2.01), "application/octet-stream"); ...   Is th

RE: when to use SOAP attachment ?

2004-02-03 Thread Scott Nichol
ow it works. > > Thank you. > > - Liam > -Original Message- > From: Dheeraj [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 29, 2004 1:49 PM > To: [EMAIL PROTECTED] > Subject: Re: when to use SOAP attachment ? > > > Hi Vishal, > > You

RE: when to use SOAP attachment ?

2004-02-03 Thread Vishal Shah
Original Message-From: Dheeraj [mailto:[EMAIL PROTECTED]Sent: Thursday, January 29, 2004 1:49 PMTo: [EMAIL PROTECTED]Subject: Re: when to use SOAP attachment ? Hi Vishal,   You should yse attachments when you are planning to send the large amount of data. Because SOAP uses the existing MIME and

RE: when to use SOAP attachment ?

2004-01-29 Thread Liam DeMasi
o use SOAP attachment ? Hi Vishal,   You should yse attachments when you are planning to send the large amount of data. Because SOAP uses the existing MIME and DIME formats to send the data so no new invenstion and advantage is the SOAP processors does not have to do any processing wo

Re: when to use SOAP attachment ?

2004-01-29 Thread Dheeraj
to use SOAP attachment ? hi,   I'm looking for the SOAP attachment usage scenarios ? When to use SOAP attachment ? What are the guidelines, etc ? Any pointers would be appreciated !   Thanks Do you Yahoo!?Yahoo! SiteBuilder - Free web site building tool. Try it!

when to use SOAP attachment ?

2004-01-29 Thread Vishal Shah
hi,   I'm looking for the SOAP attachment usage scenarios ? When to use SOAP attachment ? What are the guidelines, etc ? Any pointers would be appreciated !   Thanks Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it!

Re: Soap Attachment

2003-12-16 Thread Scott Nichol
irectly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Raj Thakkar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 16, 2003 10:44 PM Subject: Soap Attachment > Hi all, >

Soap Attachment

2003-12-16 Thread Raj Thakkar
in Java as a SOAP attachment, what would be the MIME header for it be? _ Get less junk mail with ninemsn Premium. Click here http://ninemsn.com.au/premium/landing.asp

RE: Soap attachment related question

2003-06-27 Thread Wei Li
Thanks Scott, It worked. -- wei -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 3:14 PM To: [EMAIL PROTECTED] Subject: RE: Soap attachment related question Yes, the BeanSerializer can handle a property that is a DataHandler. On 26 Jun 2003

RE: Soap attachment related question

2003-06-27 Thread Scott Nichol
> > Thanks, > > -- wei > > -Original Message- > From: Scott Nichol [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 26, 2003 1:10 PM > To: [EMAIL PROTECTED] > Subject: Re: Soap attachment related question > > > How about returning a JavaBean that has

Re: Soap attachment related question

2003-06-26 Thread Daniel Zhang
That's what I mean. Though it's not efficient. Wei Li wrote: You mean that you use two soap calls to get both meta info. and DataHandler?

RE: Soap attachment related question

2003-06-26 Thread Wei Li
You mean that you use two soap calls to get both meta info. and DataHandler? -Original Message- From: Daniel Zhang [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 1:32 PM To: [EMAIL PROTECTED] Subject: Re: Soap attachment related question Wei Li wrote: >Hi, > >We

RE: Soap attachment related question

2003-06-26 Thread Wei Li
PROTECTED] Subject: Re: Soap attachment related question How about returning a JavaBean that has the metadata, but also has a property that is a DataHandler? In other words, if your current call looks like void PutFile(MetaDataBean metaData, DataHandler data) you could public class

Re: Soap attachment related question

2003-06-26 Thread Daniel Zhang
Wei Li wrote: Hi, We are using apache soap attachment to upload and download data using WebSphere. We can send a JavaBean along with a DataHandler to the server to do upload, the Bean can have all the meta data needed for handling this DataHandler. The apache BeanSerializer can handle this

Re: Soap attachment related question

2003-06-26 Thread Scott Nichol
; public DataHandler getData() {return data;} public void setData(DataHandler data) {this.data = data;} } FileBundle GetFile(String path) On 26 Jun 2003 at 12:06, Wei Li wrote: > Hi, > > We are using apache soap attachment to upload and download data using WebSphere. &g

Soap attachment related question

2003-06-26 Thread Wei Li
Hi, We are using apache soap attachment to upload and download data using WebSphere. We can send a JavaBean along with a DataHandler to the server to do upload, the Bean can have all the meta data needed for handling this DataHandler. The apache BeanSerializer can handle this. The question is

RE: Will Soap Attachment DataHandler work with J2EE EJBs?

2003-06-09 Thread Scott Nichol
ot handle it. > > Is there any quick way to make the attachment serializable to work with EJBs? > > Thank you. > > -- wei > -Original Message- > From: Scott Nichol [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 07, 2003 9:33 AM > To: [EMAIL PROTECTED]

RE: Will Soap Attachment DataHandler work with J2EE EJBs?

2003-06-09 Thread Wei Li
EJBs? Thank you. -- wei -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Saturday, June 07, 2003 9:33 AM To: [EMAIL PROTECTED] Subject: Re: Will Soap Attachment DataHandler work with J2EE EJBs? Based on the error you get, it is apparent that the DataHandler is not

Re: Will Soap Attachment DataHandler work with J2EE EJBs?

2003-06-07 Thread Scott Nichol
Based on the error you get, it is apparent that the DataHandler is not Java serializable. The Apache SOAP serialization is not done with Java serialization, of course, but EJBs use Java serialization. On 6 Jun 2003 at 16:14, Wei Li wrote: > Hi, > > Any one had successfully used Ap

Will Soap Attachment DataHandler work with J2EE EJBs?

2003-06-06 Thread Wei Li
Hi, Any one had successfully used Apache soap attachment (passing DataHandler) to call a method in a J2EE EJB? We are failing to deserialize the DataHandler at the J2EE server side which generated java.io.NotSerializableException. Although the client side has successfully serialized the

RE: Soap attachment MarshalException

2003-06-06 Thread Wei Li
Hi , forgot to mention we are using WebSphere 4.0.3 as app server. This is a block for us, any quick answer appreciated. -Original Message- From: Wei Li Sent: Thursday, June 05, 2003 12:22 PM To: [EMAIL PROTECTED] Subject: Soap attachment MarshalException * Hi, We are trying

Soap attachment MarshalException

2003-06-06 Thread Wei Li
* Hi, We are trying to use soap attachment, and got MarshalException. Could you help to see what went wrong? We are using java client talking to ejbs through soap webservice. A. The error we got is: [SOAPException: faultCode=SOAP-ENV:Server; msg=RemoteException occurred in server

Re: SOAP attachment interoperability between MS.NET and ApacheSOAP/Axis

2002-11-20 Thread Scott Nichol
there will be interop there. Axis supports DIME, but I don't think it has WSDL support for attachments as yet. Scott Nichol - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, November 20, 2002 4:45 PM S

SOAP attachment interoperability between MS.NET and Apache SOAP/Axis

2002-11-20 Thread jingkun . hu
Does anyone have a successful story of consuming an Apache Web services with attachments using MS.NET (e .g, C#.NET), or vice versa? If so, I would greatly appreciate your help if you can post your sample code? Jingkun -- To unsubscribe, e-mail: For additional comm

Re: soap attachment

2001-10-03 Thread Aczél Csilla
Hi, There is a MIME demo in the %Apache SOAP home%\samples directory. Csilla - Original Message - From: "Sheeba Padmanabhan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 03, 2001 11:23 PM Subject: soap attachment > Hi, > > How

soap attachment from MS Soap client to Apache Soap server

2001-10-03 Thread Sheeba Padmanabhan
Hi, How would I be able to send a file via attachment using soap. I have MS C++ client comminicating to Apache java server. Is there any samples available? Thanks Sheeba

soap attachment

2001-10-03 Thread Sheeba Padmanabhan
Hi, How would I be able to send a file via attachment using soap. I have MS C++ client comminicating to Apache java server. Is there any samples available? Thanks Sheeba

soap attachment & href

2001-07-26 Thread SBC
Hi, I read on the apache site about the href, but could not figure out how to use it. Lets say I create following envolope with author element: http://schemas.xmlsoap.org/soap/envelope/";> foo.txt cid:cid-uri";> Tom a) What is ="cid:cid-uri";? Is it the content id I can get from mimebodypar

simple-soap attachment question

2001-07-16 Thread SBC
Hi, I am trying send a SOAP attachment as a MimeBodyPart. On the soap(v2.2) server, I want to know the filename & file format of the attachment. In the soap client I did MimeBodyPart bp = new MimeBodyPart(); bp.setDataHandler(dh); bp.setFileName("tes