Re: Axis attachment file created in the Temp directory

2003-07-29 Thread Rodrigo Ruiz
directory editing the axis servlet entry in your web.xml - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 16, 2003 11:42 AM Subject: RE: Axis attachment file created in the Temp directory > I have one question about this topic. Is

Re: Axis attachment file created in the Temp directory

2003-07-29 Thread Rodrigo Ruiz
ROTECTED]> Sent: Wednesday, July 16, 2003 4:42 PM Subject: RE: Axis attachment file created in the Temp directory > Hi > > I am sending part of my wsdl which describes the datahandler > > > > > > > > > > When I use

RE: Axis attachment file created in the Temp directory

2003-07-16 Thread Subhendu Kumar mohanty
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 10:18 AM To: [EMAIL PROTECTED] Subject: RE: Axis attachment file created in the Temp directory AFAIK, WSDL has no way to specify attachment handling. The language does not provide constructions for that

RE: Axis attachment file created in the Temp directory

2003-07-16 Thread jaccoud
ra: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]cc: (cco: Marcelo Jaccoud Amaral/RJ/Petrobras) ys.com> Assunto: RE: Axis attachment file cr

RE: Axis attachment file created in the Temp directory

2003-07-16 Thread Subhendu Kumar mohanty
confusing. Thanks, Subhendu -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 12:53 PM To: [EMAIL PROTECTED] Subject: RE: Axis attachment file created in the Temp directory I noted that my Axis client does not dump the attachments to a file

RE: Axis attachment file created in the Temp directory

2003-07-16 Thread Kellogg, Richard
I will add it this evening. Thanks. Rick Kellogg -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 8:27 AM To: [EMAIL PROTECTED] Subject: RE: Axis attachment file created in the Temp directory Can someone please add this to Wiki? (http

RE: Axis attachment file created in the Temp directory

2003-07-16 Thread Davanum Srinivas
Can someone please add this to Wiki? (http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages) Thanks, dims --- [EMAIL PROTECTED] wrote: > > Just write the output yourself, for example: > Iterator iterator = call.getResponseMessage().getAttachments(); > AttachmentPart par

RE: Axis attachment file created in the Temp directory

2003-07-16 Thread jaccoud
Just write the output yourself, for example: Iterator iterator = call.getResponseMessage().getAttachments(); AttachmentPart part = (AttachmentPart) iterator.next(); DataHandlerdh = part.getDataHandler(); dh.writeTo(new java.io.FileOutputStream("completeF

RE: Axis attachment file created in the Temp directory

2003-07-16 Thread Javier_Gimenez_Escudero
I have one question about this topic. Is there any way I can change the file where Axis will write the attachment. I mean, I don't want Axis to write in /tmp (I'm using linux) but in a user's home directory (let's say /home/javi/tmp). Thanks all, Javi

RE: Axis attachment file created in the Temp directory

2003-07-15 Thread jaccoud
I noted that my Axis client does not dump the attachments to a file unless I use some data handler function that forces it. For example, if I use dh.getName() Axis will dump the contents to a temp file and return its name. If you just use dh.writeTo() to specify where to put the data, Axis will no

RE: Axis attachment file created in the Temp directory

2003-07-15 Thread jzhang
OTECTED] cc: sys.com> Subject: RE: Axis attachment file created

RE: Axis attachment file created in the Temp directory

2003-07-14 Thread Subhendu Kumar mohanty
: [EMAIL PROTECTED] Subject: Re: Axis attachment file created in the Temp directory In the following the SOAPTest service exposes a method testAttachement that send a SOAP message with attachement. The following client call that method, takes the part and delete the file. I don't know if

Re: Axis attachment file created in the Temp directory

2003-07-14 Thread BLIS Webmaster (Patrick Houbaux)
ebmaster (Patrick Houbaux) [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 2:32 PM To: [EMAIL PROTECTED] Subject: Re: Axis attachment file created in the Temp directory I guess you have to clean it or move it somewhere else in your client code. Patrick. Subhendu Kumar mohanty wrote: H

RE: Axis attachment file created in the Temp directory

2003-07-14 Thread Subhendu Kumar mohanty
:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 2:32 PM To: [EMAIL PROTECTED] Subject: Re: Axis attachment file created in the Temp directory I guess you have to clean it or move it somewhere else in your client code. Patrick. Subhendu Kumar mohanty wrote: >Hi all, > >I am developing a w

Re: Axis attachment file created in the Temp directory

2003-07-14 Thread jzhang
cc: <[EMAIL PROTECTED] Subject: Re: Axis attachment file created in the Temp directory

Re: Axis attachment file created in the Temp directory

2003-07-14 Thread BLIS Webmaster (Patrick Houbaux)
I guess you have to clean it or move it somewhere else in your client code. Patrick. Subhendu Kumar mohanty wrote: Hi all, I am developing a webservice client which uses Axis. My client app calls an external webservice to get the image.I found that Axis creates temporary files in the system def

Axis attachment file created in the Temp directory

2003-07-14 Thread Subhendu Kumar mohanty
Hi all, I am developing a webservice client which uses Axis. My client app calls an external webservice to get the image.I found that Axis creates temporary files in the system default temporary directory and does not clean up. If anybody has solved this problem please let me know. Thanks, Sub