Re: attachment max size

2003-02-26 Thread Josh Kropf
Ooops, it wasn't a problem with Axis, it was MySQL... issue resolved. - Original Message - From: "Josh Kropf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 26, 2003 10:16 PM Subject: attachment max size > How does one change the maxi

attachment max size

2003-02-26 Thread Josh Kropf
How does one change the maximum size of atachments in Axis. My web service fails when attaching a relatively large file cause some internal limit is passed.

*** Axis and Handler Chains ***

2003-02-19 Thread Josh Kropf
Is it possible to configure a handler chain in the wsdd file to only run for a specified method? I want to have a hnadler chain that parses attachments in a message but it only needs to run for say the "getFile" method of the service. --

handler chain and web service operations

2003-02-18 Thread Josh Kropf
Is it possible to configure a handler chain to only process messages destine for a specific operation (method) of the web service?   Thanks, Josh

RE: DIME & Axis (2)

2003-02-11 Thread Josh Kropf
Maurizio,   I am assuming since you are working with attachments in your .NET client you are using the WSE 1.0 for .NET. Have you had any issues when sending the soap request to Axis? I seem to be having difficulties getting Axis to accept the request sent from the C# client derived from the

RE: calling SOAP with attachments from non java application

2003-02-04 Thread Josh Kropf
There actually isn't any xsd mapping for the DataHandler. Some MIME savvy implementations actually generate MIME sections in the description of the response in the WSDL, however getting this to interpolate is proving to be less than trivial.   The best way I have found so far is to manually

RE: Session Management

2003-01-31 Thread Josh Kropf
MessageContext.getMessageContext() -Original Message- From: bin [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 3:04 PM To: [EMAIL PROTECTED] Subject: Re: Session Management if u take a look at samples.userguide.example4.LogHandler you will see u have to implement invoke( Messa

RE: Interoperative attachments (MIME types)

2003-01-31 Thread Josh Kropf
E type to > "application/octet-stream", but that failed with the > same error. > > Is there any way to, say, map "audio/x-wav" to > javax.sound.sampled.Clip? Or at least to map > "application/octet-stream" to a DataHandler? > >Mark > &

RE: Interoperative attachments

2003-01-30 Thread Josh Kropf
Mark, I have investigtated slightly this matter of MIME mention in WSDL code. Just for fun, I created a web service in BEA Weblogic that returned a DataHandler since this is the automatic method to attach files apparently. The WSDL BEA creates for this class DOES have a MIME section in the operati

RE: Interoperative attachments

2003-01-28 Thread Josh Kropf
Norris, Have you had success with consuming an Axis web service with .NET WSE 1.0 using attachments? I had issues with Axis not accepting all the extra Nodes .NET places in it's SOAP envelope request. -Original Message- From: Norris Merritt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, Januar

RE: Interoperative attachments

2003-01-28 Thread Josh Kropf
n't have other platforms to test on. The W3C WSDL 1.1 Note shows a MIME binding that supports attachments, but poking around on the Xmethods website, I didn't run across any WSDL that shows the MIME binding. If vender interoperability for attachments just isn't there yet, that would

RE: Interoperative attachments

2003-01-28 Thread Josh Kropf
esn't mention the file that I return as an attachment. Should I revise the WSDL by hand so that the binding includes something like this: Do I need some sort of mime stuff in the binding section for my server to work with a variety of clients? Mark --- Josh Kro

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 = MessageContext.getCurrentContext().getResponseMessage();

Axis 1.x and .NET WSE 1.0

2003-01-23 Thread Josh Kropf
Hi All   I am working on a project where my intent is to make a web service that can be consumed by multiple platforms. I am currently using the latest version of Axis (1.1beta). My Web Service also attaches files to the SOAP message.   The main non-Java platform I have been playing with is