RE: Interoperative attachments (MIME types)

2003-01-31 Thread Josh Kropf
Nice catch Mark!!! -Original Message- From: Mark Mueller [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 8:19 PM To: [EMAIL PROTECTED] Subject: RE: Interoperative attachments (MIME types) I think I may have solved the problem. I think there's a misspelling of octet-stream

RE: Interoperative attachments

2003-01-30 Thread Josh Kropf
Framework. -Original Message- From: Mark Mueller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 4:09 PM To: [EMAIL PROTECTED] Subject: RE: Interoperative attachments Folks, I originally used the method in the EchoAttachments sample which did use MIME to send the attahcment

RE: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
. -Original Message- From: Mark Mueller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 4:09 PM To: [EMAIL PROTECTED] Subject: RE: Interoperative attachments Folks, I originally used the method in the EchoAttachments sample which did use MIME to send the attahcment

RE: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
PROTECTED]] Sent: Tuesday, January 28, 2003 4:09 PM To: [EMAIL PROTECTED] Subject: RE: Interoperative attachments Folks, I originally used the method in the EchoAttachments sample which did use MIME to send the attahcment -- but the WSDL identified the type

Re: Interoperative attachments (MIME types)

2003-01-30 Thread Steve Loughran
- Original Message - From: Mark Mueller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 17:19 Subject: RE: Interoperative attachments (MIME types) I think I may have solved the problem. I think there's a misspelling of octet-stream in line 702

Re: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
: - Original Message - From: Mark Mueller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 17:19 Subject: RE: Interoperative attachments (MIME types) I think I may have solved the problem. I think there's a misspelling of octet-stream in line 702

Re: Interoperative attachments (MIME types)

2003-01-30 Thread Steve Loughran
- Original Message - From: Mark Mueller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 19:48 Subject: Re: Interoperative attachments (MIME types) Steve, What would be the downside of mapping any MIME type to a java.lang.Object by default (via

RE: Interoperative attachments

2003-01-28 Thread Josh Kropf
To: [EMAIL PROTECTED] Subject: RE: Interoperative attachments Josh, This was very helpful -- thanks a lot! I've implemented my service this way, and I return the URL of the attachment content-id as the return-value of the call. I have another question. The WSDL created by Java2WSDL doesn't

RE: Interoperative attachments

2003-01-28 Thread Norris Merritt
need to be Base-64 encoded. Its much more efficient than MIME. -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 9:17 AM To: [EMAIL PROTECTED] Subject: Re: Interoperative attachments - Original Message - From: Mark Mueller [EMAIL

Re: Interoperative attachments

2003-01-28 Thread Dennis Sosnoski
]' Subject: RE: Interoperative attachments If you have an binary type of attachment such as image/jpeg, then it has to be Base-64 encoded if MIME is used -Original Message- From: Dan Allen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 12:40 PM To: [EMAIL PROTECTED] Subject

Re: Interoperative attachments

2003-01-28 Thread Steve Loughran
- Original Message - From: Dennis Sosnoski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 28, 2003 14:15 Subject: Re: Interoperative attachments Hmmm. So this means SOAP implementations that *don't* encode MIME attachments work as long as the data being sent doesn't

RE: Interoperative attachments

2003-01-28 Thread Norris Merritt
Thanks, its useful to know that MIME over HTTP doesn't require encoding of binary attachments. -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 1:41 PM To: [EMAIL PROTECTED] Subject: Re: Interoperative attachments - Original

RE: Interoperative attachments

2003-01-27 Thread Mark Mueller
Josh, This was very helpful -- thanks a lot! I've implemented my service this way, and I return the URL of the attachment content-id as the return-value of the call. I have another question. The WSDL created by Java2WSDL doesn't mention the file that I return as an attachment. Should I

RE: Interoperative attachments

2003-01-23 Thread Josh Kropf
Mark, After working with Axis for a while then migrating to BEA Weblogic, I have found that the best way to attach files is to do it through handlers. However it's equaly as viable to do it in your Web Service for example: Message message =