Hi, I need to build an AXIS client that executes some handlers in the request and the response. It's quite simple for the server side, but I can't get it for the client one. I think I have to use the AxisClient class but I don't know how. I've generated a .wsdd file with the chain for the axis client and I tried with the Service constructor with no result: ... String wsddFilePath = "E:\\java\\axis\\server-config.wsdd"; org.apache.axis.configuration.FileProvider wsdd = new org.apache.axis.configuration.FileProvider(wsddFilePath); Service service = new Service(wsdd); ...
How can I setup the handlers of the axis client? Is there any information about this topic?. Thanks, Jorge
