This method is used only for JAX-RPC invocation.
ServiceEngineEndpoint endpt = endpointRegistry.get(service, endpoint);
if(endpt != null) {
Map runtimeEndpointInfoTable = (Map)store.get(service);
if(runtimeEndpointInfoTable == null) {
runtimeEndpointInfoTable = new Hashtable();
store.put(service, runtimeEndpointInfoTable);
}
Object runtimeInfo = runtimeEndpointInfoTable.get(endpoint);
if(runtimeInfo == null) {
runtimeInfo = JAXRPCRuntimeEndpointHelper.populateRuntimeInfo(endpt);
runtimeEndpointInfoTable.put(endpoint, runtimeInfo);
}
return runtimeInfo;
}
throw new ServiceEngineException("Endpoint " + endpoint + "not deployed in JBI");