Package org.jboss.soa.esb.listeners.gateway.http

Examples of org.jboss.soa.esb.listeners.gateway.http.HttpRequestWrapper


    if (!"/".equals(servletPath)) {
      response.setStatus(404);
      return;
    }
   
    org.jboss.soa.esb.listeners.gateway.http.HttpRequestWrapper wrapper = new HttpRequestWrapper(request, response, null);
      
    try {
      if (synchronous) {
        messageDeliveryAdapter.deliverSync(wrapper, serviceTimeout);
      } else {
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.listeners.gateway.http.HttpRequestWrapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.