So I'm doing something unusual, I have a spring namespace handler so that I end up with a spring config like this:
<bead id="myService" class="..."> <webservice:endpoint/> </bean> Where <webservice:endpoint/> is my magic where I end up with requests routed to a Handler. Now, my handler logic looks basically like this: if (requestURL.endsWith(".wsdl") { // serve up the wsdl } else { // actually do the service call via soap } The first part works. I'm having trouble with the second part, actually handling the service call. My first instinct was just to try to extend AxisServlet and provide my own AxisConfigurator, and override some of the protected methods, createMessageContext(..) for instance. But this is not going very well. Can anyone point me to or provide me with some info about how to get this done? I have a reference to the spring "bean" that will actually be invoked -- the one that would be returned by SpringServletContextObjectSupplier if I were going that route. Thanks, Dave --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@axis.apache.org For additional commands, e-mail: java-user-h...@axis.apache.org