RE: Differences in WLS security with Axis 1.4 versus Axis2

2010-05-14 Thread William Walsh
Hi, Just to give an update in case it spurs any thoughts or helps anyone in the future. I've coded a custom receiver that essentially duplicates the Axis2 EJB receiver code (e.g. EJBUtil.java, RPCUtil.java) without the threading and that works for us; that is, we don't fail with the [EJB:01016

RE: InputStream to DataSource In Axis2

2010-05-14 Thread Martin Gainty
//its possible this content type should be processed as REST .. check to see if your content type is * 1. application/xml * 2. application/x-www-form-urlencoded * 3. multipart/form-data //also check the disableRest parameter in axis2.xml is disabled e.g. so you can use RESTpro

Re: InputStream to DataSource In Axis2

2010-05-14 Thread Vishwal Shah
Thanks Andreas. Is there an alternative API in Axis2 that i can use ? Thanks, Vish On Fri, May 14, 2010 at 11:17 AM, Andreas Veithen wrote: > You should not use InputStreamDataSource. This code should never have > been included in Axis2 because it is not a valid DataSource > implementation [1

Re: InputStream to DataSource In Axis2

2010-05-14 Thread Andreas Veithen
You should not use InputStreamDataSource. This code should never have been included in Axis2 because it is not a valid DataSource implementation [1]. Andreas [1] http://markmail.org/message/q34d4hxahdlsefob On Fri, May 14, 2010 at 19:17, Vishwal Shah wrote: > Hi, > My Application receives a Htt

Re: MTOM Message is not Optimized

2010-05-14 Thread Yogesh . Dhake
Hope below paragraph helps When this property is set to true any SOAP envelope which contains optimizable content (OMText nodes containing binary content with optimizable flag "true") will be serialized as a MTOM optimized message. Messages will not be packaged as MTOM if they did not contain

Re: InputStream to DataSource In Axis2

2010-05-14 Thread Vishwal Shah
Hi, My Application receives a Http Post from another web application which sends ~150mgs of data, i need to take that data and create a DataHandler (MTOM) and make a webservice call to another webapp. Its kind of pass through. i cannot copy that data onto any drive, it needs to create a DataHandler