Individual classloaders for each Web service

2009-10-11 Thread Bauer Horscht
Hi! Is there a way to make Axis use individual classloaders for each Web service class to ease putting each into a Java sandbox? Thanks!

Re: Individual classloaders for each Web service

2009-10-11 Thread Bauer Horscht
generally each service implements service-specific classloader http://ws.apache.org/axis2/faq.html is there a specific classloader you wanted to invoke? yes, actually I meant to have Axis use a custom classloader for loading the service classes. Is this possible, too? any projections on

Re: how to set timeout in axis 1.4 web service client

2009-09-30 Thread Bauer Horscht
In a custom handler, you can directly set it on the MessageContext object (mc): mc.setTimeout(120*1000); //120 seconds Ashish Kulkarni schrieb: Hi How do we set connection timeout in axis 1.4 web service client, i think default is 10 minutes, I want to timeout if web service does not

Stop deserialization

2009-09-20 Thread Bauer Horscht
Hi, what is the most convenient way to stop Axis (in particular 1.4) from deserializing every message that comes in? The handler architecture is probably not made to interfere at this early stage. The idea is to prevent message that exceed a predefined size from being parsed. Thanks Bauer

allowedMethods: what about overloaded methods (Axis 1.4)

2009-09-06 Thread Bauer Horscht
://issues.apache.org/jira/browse/AXIS-1489 Cheers Bauer Horscht

Server-side: communication from request handler to target class

2009-08-28 Thread Bauer Horscht
regards Bauer Horscht