* @return the request handler
*/
protected RequestHandler makeRequestHandler(HttpServletRequest request,
HttpServletResponse response,
RequestContext context) {
IProviderFactory factory = new ProviderFactory();
RequestHandler handler = factory.makeRequestHandler(
request,context,this.cswSubContextPath,this.resourceFilePrefix);
if (handler != null) {
handler.getOperationContext().getServiceProperties().setAllowTransactions(this.allowTransactions);
}
return handler;