*/
public EndpointReference createEndpointReference(QName serviceName, QName endpoint) {
EndpointKey key = new EndpointKey(serviceName, endpoint);
EndpointContextMap map = EndpointContextMapManager.getEndpointContextMap();
if (!map.containsKey(key))
throw new IllegalStateException("Unable to locate a deployed service that maps to the requested endpoint, " + key);
AxisService axisService = (AxisService) map.get(key);
String address = null;