Re: [Axis2] How to get the service URL and method in handler?

2006-06-08 Thread Eran Chinthaka
Samisa Abeysinghe wrote: > Forwarding with correct prefix. > > hi all, > > I want to use handler to log which service the client is accessing, > for example the service URL, name and method, but in the handler > invoke() method, there is only the MessageContext that can be used. > (I tried most t

Re: How to get the service URL and method in handler?

2006-06-08 Thread 蘇 軼(CEC)
: How to get the service URL and method in handler? > mc.getAxisService() gets the target service (.getEndpoint() returns the > target service endpoint). > mc.getAxisOperation() gets the axis operation > > You have to put your handler after the system handlers, since these > va

Re: How to get the service URL and method in handler?

2006-06-08 Thread Michele Mazzucco
mc.getAxisService() gets the target service (.getEndpoint() returns the target service endpoint). mc.getAxisOperation() gets the axis operation You have to put your handler after the system handlers, since these values are filled into the transport/dispatch phase. Michele 蘇 軼(CEC) wrote: > hi a

[Axis2] How to get the service URL and method in handler?

2006-06-08 Thread Samisa Abeysinghe
Forwarding with correct prefix. hi all, I want to use handler to log which service the client is accessing, for example the service URL, name and method, but in the handler invoke() method, there is only the MessageContext that can be used. (I tried most the mc.getXXX() method but no one is help

How to get the service URL and method in handler?

2006-06-08 Thread 蘇 軼(CEC)
hi all, I want to use handler to log which service the client is accessing, for example the service URL, name and method, but in the handler invoke() method, there is only the MessageContext that can be used. (I tried most the mc.getXXX() method but no one is helpful to get information above.) I