DefaultProxyEndpointServiceProvider proxyEndpointServiceProvider = new DefaultProxyEndpointServiceProvider();
proxyEndpointService = proxyEndpointServiceProvider.createProxyEndpointService(serviceType);
}
}
if(proxyEndpointService != null){
proxyEndpointService.service(request, response);
}
else{
logger.log(Level.SEVERE, "ProxyEndpoint Service could not be retrieved for PathInfo {0}", pathinfo);
ProxyService.writeErrorResponse(HttpServletResponse.SC_BAD_REQUEST, "ProxyEndpoint Service could not be retrieved", new String[] {}, new String[] {}, response, request);
}