return;
@SuppressWarnings("unchecked")
Map<String, Context> serviceContextMap = (Map<String, Context>) engine.context.get(Service.serviceContext);
if (serviceContextMap != null && serviceContextMap.containsKey(serviceURI)) {
Context serviceContext = serviceContextMap.get(serviceURI);
if (log.isDebugEnabled())
log.debug("Endpoint URI {} has SERVICE Context: {} ", serviceURI, serviceContext);
// Apply behavioral options
engine.setAllowGZip(serviceContext.isTrueOrUndef(Service.queryGzip));
engine.setAllowDeflate(serviceContext.isTrueOrUndef(Service.queryDeflate));
applyServiceTimeouts(engine, serviceContext);
// Apply authentication settings
String user = serviceContext.getAsString(Service.queryAuthUser);
String pwd = serviceContext.getAsString(Service.queryAuthPwd);
if (user != null || pwd != null) {
user = user == null ? "" : user;
pwd = pwd == null ? "" : pwd;
if (log.isDebugEnabled())