Hi, I debug an Axis1 webservice which runs in the debug mode of Eclipse. I have added a handler to the server.wsdd file, but it won't be executed in the request/response flow.
Does Eclipse ignore the server.wsdd? My handler is very simple: public class MyHandler extends BasicHandler { public void invoke(org.apache.axis.MessageContext context) throws AxisFault { System.out.println("Hello"); } } But there is no "Hello" in the console output. The server.wsdd is the default one from http://mirror.informatimago.com/next/developer.apple.com/documentation/WebObjects/Web_Services/Web_Services/chapter_4_section_7.html plus a new handler in the requestFlow/responseFlow tags: <handler type="java:info.phosco.ws.export.service.MyHandler"/> Should I define the path to the server.wsdd in the "Run Configurations" or something? Any ideas? Thanks a lot. Andre _______________________________________________ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com