Status of asynchronous architecture?

2004-06-10 Thread Biörn Biörnstad
Dear developers, What is the status of the new Axis architecture which supports aynchronous message handling (o.a.axis.ime package?)? I could not find any recent documentation or correspondence on this topic. To me it looks like nobody is working on this anymore. Bioern

Re: Can Axis use an already instatiated class

2004-06-03 Thread Biörn Biörnstad
Hi Joel A Simple solution to your problem would be to write a wrapper for your object. Register this wrapper class as service in Axis. When the wrapper is instanciated (by Axis) it looks up the service object (depends on where your object is registered. Use JNDI, a static method or some other di

Re: question on providers in WSDD

2004-05-28 Thread Biörn Biörnstad
Hi Sanjay > 1. In a wsdd file when we give > what does it mean, When using the 'Handler' provider type use the 'handlerClass' parameter to specify the class to be used. The specified class must implement the o.a.axis.Handler interface. Your handler gets called with the raw MessageContext. Check

Re: AXIS - jms transaction

2004-05-24 Thread Biörn Biörnstad
Hi Balaji, IMO there is no workaround since you need to control the way jms session are created, which is "internal" to the code. I'm not sure how complicated it would be to add this feature. The axis jms code is quite complex since the authors have built a huge abstraction mechnism for connecti

Re: AXIS - jms transaction

2004-05-21 Thread Biörn Biörnstad
Hi Balaji Although it would make sense to use jms transactions in an axis server the source code doesn't seem to make any use of them. -Bioern Balaji Kandan wrote: Does AXIS support jms transactions for jms transport mechanism??? balaji

Re: possible logic error in RPCHandler

2004-05-11 Thread Biörn Biörnstad
Jeff, I think your right. The way the method is used in the code snippet doesn't make any sense to me. You should file a bug report. Bioern Jeff Greif wrote: In this code snippet from org.apache.axis.message.RPCHandler, around line 260 in the axis-1.2 beta sources, if(null != dest

Re: Axis, JMS and SOAP issue.

2004-05-10 Thread Biörn Biörnstad
We are trying to call JMS using a java bean running in axis running in tomcat. We are trying to create the jms socket within axis. We are getting a 42 Invocation Error. This seems to be very generic error. You need to be more speicific. From your description I understand that you're talking

Re: WSDL in Server-config.wsdd problem

2004-05-10 Thread Biörn Biörnstad
See http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/WsdlFile -Bioern Satrusalya, Prassana wrote: Hi I am providing the location of WSDL in server-config.wsdd as: /WS.wsdl It does not let me see wsdl when I use the URL : http://trs-ut.abc.com/learnnet/services/TestWS?wsd

SOAP intermediary [was: How do you perform a transport protocol change using Axis?]

2004-02-20 Thread Biörn Biörnstad
Hi, I have exactly the same problem. The solution to our problem is called "SOAP intermediary" (in this case a "forwarding intermediary"). But the next problem is: How do I implement an intermediary using Axis? I have read all documentation I could find, I have searched the mailing lists and the W