Hello, I have this snippet in the jaxrpc-ri.xml config file:
<endpoint description="Server interaction Web Service"
displayName="Server Manager"
implementation="it.test.jwsdp.ServerPortSEI"
interface="it.test.jwsdp.ServerPort"
model="/WEB-INF/model-wsdl-doclit.xml.gz" name="ServerPort"
wsdl="/WEB-INF/testJWSDP.wsdl">
<handlerChains>
<chain runAt="server">
<handler className="it.test.jwsdp.handlers.Example">
<property name="configValue" value="fru fru"/>
</handler>
</chain>
</handlerChains>
</endpoint>
but the method handleRequest(MessageContext mctx) isn't called (I put a
breakpoint in Eclipse inside the method but it doesn't stop). I want to
check for session management on the incoming message and kill those
that don't support sessions and I thought the best thing to do was to
use Handlers but I can't get them to work.
Anything clearly wrong in my snippet?
e