// sun-jaxws.xml deployment
@ProbeListener("glassfish:webservices:deployment-ri:deploy")
public synchronized void riDeploy(@ProbeParam("adapter")ServletAdapter adapter) {
String contextPath = adapter.getServletContext().getContextPath();
String path = contextPath+adapter.getValidPath();
DeployedEndpointData data = endpoints.get(path);
if (data == null) {
data = new DeployedEndpointData(path, adapter);
endpoints.put(path, data);
}
List<DeployedEndpointData> ri = riEndpoints.get(contextPath);
if (ri == null) {