Hi friends,
I unable to find information how to enumerate all regesterid in the AS Endpoints.
One way I found - enumerate EPRs, but the EPR is not endpoint...
My goal is to execute for each:
for(Endpoint ep: eps) {
ep.getBinding().getHandlerChain().add(new SoapHandler());
}
where SoapHandler - is my own class implements javax.xml.ws.handler.Handler.
Thank you for advices.