How to catch transport error from inside custom Axis handler?

2008-06-24 Thread Sukma Agung Verdianto
Hello All, To the point, how can I catch transport error (eg: 404 error, host not found, etc) as a message fault inside a custom handler. I am creating a custom logging module to logs all transaction messages to database. The design & example is very clear and now I can log outbound, inbound, in/o

Re: Custom Axis Handler

2006-12-05 Thread robert lazarski
Looking at my old axis 1.x code ... it depends on what handler interface you are using. For example: //add ClientHandler to chain of events java.util.List list = svc.getHandlerRegistry().getHandlerChain(portQN); list.add(new javax.xml.rpc.handler.HandlerInfo(ClientHandler.class,this.han

Custom Axis Handler

2006-12-05 Thread Hoying, Ken
I am attempting to create a custom client side handler in Axis 1.2. The handler is being called and seems to working properly. However, I am unable to pass any parameters to it. I am attempting to pass a string to the handler as follows: Stub._setProperty("MyName", "MyValue");