You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jl...@apache.org on 2007/01/19 09:08:23 UTC

svn commit: r497732 - /geronimo/server/trunk/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java

Author: jlaskowski
Date: Fri Jan 19 00:08:22 2007
New Revision: 497732

URL: http://svn.apache.org/viewvc?view=rev&rev=497732
Log:
GERONIMO-2752 Axis2 integration displays invalid information for URL requests

Submitted by: Lasantha Ranaweera

Modified:
    geronimo/server/trunk/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java

Modified: geronimo/server/trunk/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java?view=diff&rev=497732&r1=497731&r2=497732
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java (original)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/Axis2WebServiceContainer.java Fri Jan 19 00:08:22 2007
@@ -1,354 +1,358 @@
-/**
- *  Licensed to the Apache Software Foundation (ASF) under one or more
- *  contributor license agreements.  See the NOTICE file distributed with
- *  this work for additional information regarding copyright ownership.
- *  The ASF licenses this file to You under the Apache License, Version 2.0
- *  (the "License"); you may not use this file except in compliance with
- *  the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing, software
- *  distributed under the License is distributed on an "AS IS" BASIS,
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  See the License for the specific language governing permissions and
- *  limitations under the License.
- */
-
-package org.apache.geronimo.axis2;
-
-import org.apache.axis2.AxisFault;
-import org.apache.axis2.Constants;
-import org.apache.axis2.addressing.AddressingHelper;
-import org.apache.axis2.context.ConfigurationContext;
-import org.apache.axis2.context.ConfigurationContextFactory;
-import org.apache.axis2.context.MessageContext;
-import org.apache.axis2.context.OperationContext;
-import org.apache.axis2.description.AxisService;
-import org.apache.axis2.description.TransportInDescription;
-import org.apache.axis2.description.TransportOutDescription;
-import org.apache.axis2.engine.AxisEngine;
-import org.apache.axis2.rpc.receivers.RPCMessageReceiver;
-import org.apache.axis2.transport.http.HTTPConstants;
-import org.apache.axis2.transport.http.HTTPTransportReceiver;
-import org.apache.axis2.transport.http.HTTPTransportUtils;
-import org.apache.axis2.transport.http.server.HttpUtils;
-import org.apache.axis2.transport.OutTransportInfo;
-import org.apache.axis2.util.UUIDGenerator;
-import org.apache.axis2.util.JavaUtils;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-import org.apache.geronimo.webservices.WebServiceContainer;
-import org.apache.ws.commons.schema.XmlSchema;
-
-import javax.xml.namespace.QName;
-import java.io.PrintWriter;
-import java.net.SocketException;
-import java.net.URI;
-import java.util.HashMap;
-import java.util.Map;
-
-
-public class Axis2WebServiceContainer implements WebServiceContainer {
-
-    private static final Log LOG = LogFactory.getLog(Axis2WebServiceContainer.class);
-
-    public static final String REQUEST = Axis2WebServiceContainer.class.getName() + "@Request";
-    public static final String RESPONSE = Axis2WebServiceContainer.class.getName() + "@Response";
-
-    private transient final ClassLoader classLoader;
-    private final String endpointClassName;
-    private final PortInfo portInfo;
-    private ConfigurationContext configurationContext;
-    private String contextRoot = null;
-
-    public Axis2WebServiceContainer(PortInfo portInfo, String endpointClassName, ClassLoader classLoader) {
-        this.classLoader = classLoader;
-        this.endpointClassName = endpointClassName;
-        this.portInfo = portInfo;
-        try {
-            configurationContext = ConfigurationContextFactory.createDefaultConfigurationContext();
-            AxisService service = AxisService.createService(endpointClassName, configurationContext.getAxisConfiguration(), RPCMessageReceiver.class);
-            configurationContext.getAxisConfiguration().addService(service);
-        } catch (AxisFault af) {
-            throw new RuntimeException(af);
-        } catch (Exception e) {
-            throw new RuntimeException(e);
-        }
-    }
-
-    public void getWsdl(Request request, Response response) throws Exception {
-        doService(request, response);
-    }
-
-    public void invoke(Request request, Response response) throws Exception {
-        doService(request, response);
-    }
-
-    protected void doService(final Request request, final Response response)
-            throws Exception {
-        initContextRoot(request);
-
-        if (LOG.isDebugEnabled()) {
-            LOG.debug("Target URI: " + request.getURI());
-        }
-
-        MessageContext msgContext = new MessageContext();
-        msgContext.setIncomingTransportName(Constants.TRANSPORT_HTTP);
-        msgContext.setProperty(MessageContext.REMOTE_ADDR, request.getRemoteAddr());
-
-        try {
-            TransportOutDescription transportOut = this.configurationContext.getAxisConfiguration()
-                    .getTransportOut(new QName(Constants.TRANSPORT_HTTP));
-            TransportInDescription transportIn = this.configurationContext.getAxisConfiguration()
-                    .getTransportIn(new QName(Constants.TRANSPORT_HTTP));
-
-            msgContext.setConfigurationContext(this.configurationContext);
-
-            //TODO: Port this segment for session support.
-//            String sessionKey = (String) this.httpcontext.getAttribute(HTTPConstants.COOKIE_STRING);
-//            if (this.configurationContext.getAxisConfiguration().isManageTransportSession()) {
-//                SessionContext sessionContext = this.sessionManager.getSessionContext(sessionKey);
-//                msgContext.setSessionContext(sessionContext);
-//            }
-            msgContext.setTransportIn(transportIn);
-            msgContext.setTransportOut(transportOut);
-            msgContext.setServiceGroupContextId(UUIDGenerator.getUUID());
-            msgContext.setServerSide(true);
-
-//            // set the transport Headers
-//            HashMap headerMap = new HashMap();
-//            for (Iterator it = request.headerIterator(); it.hasNext();) {
-//                Header header = (Header) it.next();
-//                headerMap.put(header.getName(), header.getValue());
-//            }
-//            msgContext.setProperty(MessageContext.TRANSPORT_HEADERS, headerMap);
-//
-//            this.httpcontext.setAttribute(AxisParams.MESSAGE_CONTEXT, msgContext);
-
-            doService2(request, response, msgContext);
-        } catch (Throwable e) {
-            try {
-                AxisEngine engine = new AxisEngine(this.configurationContext);
-
-                msgContext.setProperty(MessageContext.TRANSPORT_OUT, response.getOutputStream());
-                msgContext.setProperty(Constants.OUT_TRANSPORT_INFO, new Axis2TransportInfo(response));
-
-                MessageContext faultContext = engine.createFaultMessageContext(msgContext, e);
-                // If the fault is not going along the back channel we should be 202ing
-                if (AddressingHelper.isFaultRedirected(msgContext)) {
-                    response.setStatusCode(202);
-                } else {
-                    response.setStatusCode(500);
-                }
-                engine.sendFault(faultContext);
-            } catch (Exception ex) {
-                if (AddressingHelper.isFaultRedirected(msgContext)) {
-                    response.setStatusCode(202);
-                } else {
-                    response.setStatusCode(500);
-                    String msg = ex.getMessage();
-                    response.setHeader(HTTPConstants.HEADER_CONTENT_TYPE, "text/plain");
-                    PrintWriter pw = new PrintWriter(response.getOutputStream());
-                    ex.printStackTrace(pw);
-                    pw.flush();
-                }
-            }
-        }
-
-    }
-
-    private void initContextRoot(Request request) {
-        if (contextRoot == null || "".equals(contextRoot)) {
-            String[] parts = JavaUtils.split(request.getContextPath(), '/');
-            if (parts != null) {
-                for (int i = 0; i < parts.length; i++) {
-                    if (parts[i].length() > 0) {
-                        contextRoot = parts[i];
-                        break;
-                    }
-                }
-            }
-            if (contextRoot == null || request.getContextPath().equals("/")) {
-                contextRoot = "/";
-            }
-            configurationContext.setContextRoot(contextRoot);
-        }
-    }
-
-    public void doService2(
-            final Request request,
-            final Response response,
-            final MessageContext msgContext) throws Exception {
-
-        ConfigurationContext configurationContext = msgContext.getConfigurationContext();
-        final String servicePath = configurationContext.getServiceContextPath();
-        final String contextPath = (servicePath.startsWith("/") ? servicePath : "/" + servicePath) + "/";
-
-        URI uri = request.getURI();
-        String path = uri.getPath();
-        String soapAction = request.getHeader(HTTPConstants.HEADER_SOAP_ACTION);
-
-        // TODO: Port this section
-//        // Adjust version and content chunking based on the config
-//        boolean chunked = false;
-//        TransportOutDescription transportOut = msgContext.getTransportOut();
-//        if (transportOut != null) {
-//            Parameter p = transportOut.getParameter(HTTPConstants.PROTOCOL_VERSION);
-//            if (p != null) {
-//                if (HTTPConstants.HEADER_PROTOCOL_10.equals(p.getValue())) {
-//                    ver = HttpVersion.HTTP_1_0;
-//                }
-//            }
-//            if (ver.greaterEquals(HttpVersion.HTTP_1_1)) {
-//                p = transportOut.getParameter(HTTPConstants.HEADER_TRANSFER_ENCODING);
-//                if (p != null) {
-//                    if (HTTPConstants.HEADER_TRANSFER_ENCODING_CHUNKED.equals(p.getValue())) {
-//                        chunked = true;
-//                    }
-//                }
-//            }
-//        }
-
-        if (request.getMethod() == Request.GET) {
-            if (!path.startsWith(contextPath)) {
-                response.setStatusCode(301);
-                response.setHeader("Location", contextPath);
-                return;
-            }
-            if (uri.toString().indexOf("?") < 0) {
-                if (!path.endsWith(contextPath)) {
-                    String serviceName = path.replaceAll(contextPath, "");
-                    if (serviceName.indexOf("/") < 0) {
-                        String res = HTTPTransportReceiver.printServiceHTML(serviceName, configurationContext);
-                        PrintWriter pw = new PrintWriter(response.getOutputStream());
-                        pw.write(res);
-                        return;
-                    }
-                }
-            }
-            if (uri.getQuery().startsWith("wsdl2")) {
-                String serviceName = path.substring(path.lastIndexOf("/") + 1, path.length() - 6);
-                HashMap services = configurationContext.getAxisConfiguration().getServices();
-                final AxisService service = (AxisService) services.get(serviceName);
-                if (service != null) {
-                    service.printWSDL2(response.getOutputStream(), uri.getHost(), servicePath);
-                    return;
-                }
-            }
-            if (uri.getQuery().startsWith("wsdl")) {
-                String serviceName = path.substring(path.lastIndexOf("/") + 1);
-                HashMap services = configurationContext.getAxisConfiguration().getServices();
-                final AxisService service = (AxisService) services.get(serviceName);
-                if (service != null) {
-                    service.printWSDL(response.getOutputStream(), uri.getHost(), servicePath);
-                    return;
-                }
-            }
-            if (uri.getQuery().startsWith("xsd=")) {
-                String serviceName = path.substring(path.lastIndexOf("/") + 1);
-                HashMap services = configurationContext.getAxisConfiguration().getServices();
-                final AxisService service = (AxisService) services.get(serviceName);
-                if (service != null) {
-                    service.printSchema(response.getOutputStream());
-                    return;
-                }
-            }
-            //cater for named xsds - check for the xsd name
-            if (uri.getQuery().startsWith("xsd")) {
-                String serviceName = path.substring(path.lastIndexOf("/") + 1);
-                String schemaName = uri.getQuery().substring(uri.getQuery().lastIndexOf("=") + 1);
-
-                HashMap services = configurationContext.getAxisConfiguration().getServices();
-                AxisService service = (AxisService) services.get(serviceName);
-                if (service != null) {
-                    //run the population logic just to be sure
-                    service.populateSchemaMappings();
-                    //write out the correct schema
-                    Map schemaTable = service.getSchemaMappingTable();
-                    final XmlSchema schema = (XmlSchema) schemaTable.get(schemaName);
-                    //schema found - write it to the stream
-                    if (schema != null) {
-                        schema.write(response.getOutputStream());
-                        return;
-                    } else {
-                        // no schema available by that name  - send 404
-                        response.setStatusCode(404);
-                        return;
-                    }
-                }
-            }
-
-            msgContext.setProperty(MessageContext.TRANSPORT_OUT, response.getOutputStream());
-            msgContext.setProperty(Constants.OUT_TRANSPORT_INFO, new Axis2TransportInfo(response));
-
-            // deal with GET request
-            boolean processed = HTTPTransportUtils.processHTTPGetRequest(
-                    msgContext,
-                    response.getOutputStream(),
-                    soapAction,
-                    path,
-                    configurationContext,
-                    HTTPTransportReceiver.getGetRequestParameters(path));
-
-            if (!processed) {
-                response.setStatusCode(200);
-                String s = HTTPTransportReceiver.getServicesHTML(configurationContext);
-                PrintWriter pw = new PrintWriter(response.getOutputStream());
-                pw.write(s);
-                pw.flush();
-            }
-
-        } else if (request.getMethod() == Request.POST) {
-            // deal with POST request
-
-            msgContext.setProperty(MessageContext.TRANSPORT_OUT, response.getOutputStream());
-            msgContext.setProperty(Constants.OUT_TRANSPORT_INFO, new Axis2TransportInfo(response));
-
-            String contenttype = request.getHeader(HTTPConstants.HEADER_CONTENT_TYPE);
-            HTTPTransportUtils.processHTTPPostRequest(
-                    msgContext,
-                    request.getInputStream(),
-                    response.getOutputStream(),
-                    contenttype,
-                    soapAction,
-                    path);
-
-        } else {
-            throw new UnsupportedOperationException("[" + request.getMethod() + " ] method not supported");
-        }
-
-        // Finalize response
-        OperationContext operationContext = msgContext.getOperationContext();
-        Object contextWritten = null;
-        Object isTwoChannel = null;
-        if (operationContext != null) {
-            contextWritten = operationContext.getProperty(Constants.RESPONSE_WRITTEN);
-            isTwoChannel = operationContext.getProperty(Constants.DIFFERENT_EPR);
-        }
-
-
-        if ((contextWritten != null) && Constants.VALUE_TRUE.equals(contextWritten)) {
-            if ((isTwoChannel != null) && Constants.VALUE_TRUE.equals(isTwoChannel)) {
-                response.setStatusCode(202);
-                return;
-            }
-            response.setStatusCode(202);
-        } else {
-            response.setStatusCode(202);
-        }
-    }
-
-    public class Axis2TransportInfo implements OutTransportInfo {
-        private Response response;
-
-        public Axis2TransportInfo(Response response) {
-            this.response = response;
-        }
-
-        public void setContentType(String contentType) {
-            response.setHeader(HTTPConstants.HEADER_CONTENT_TYPE, contentType);
-        }
-    }
-
-}
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+
+package org.apache.geronimo.axis2;
+
+import java.io.PrintWriter;
+import java.net.URI;
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.xml.namespace.QName;
+
+import org.apache.axiom.om.util.UUIDGenerator;
+import org.apache.axis2.AxisFault;
+import org.apache.axis2.Constants;
+import org.apache.axis2.addressing.AddressingHelper;
+import org.apache.axis2.context.ConfigurationContext;
+import org.apache.axis2.context.ConfigurationContextFactory;
+import org.apache.axis2.context.MessageContext;
+import org.apache.axis2.context.OperationContext;
+import org.apache.axis2.description.AxisService;
+import org.apache.axis2.description.TransportInDescription;
+import org.apache.axis2.description.TransportOutDescription;
+import org.apache.axis2.engine.AxisEngine;
+import org.apache.axis2.rpc.receivers.RPCMessageReceiver;
+import org.apache.axis2.transport.OutTransportInfo;
+import org.apache.axis2.transport.http.HTTPConstants;
+import org.apache.axis2.transport.http.HTTPTransportReceiver;
+import org.apache.axis2.transport.http.HTTPTransportUtils;
+import org.apache.axis2.util.JavaUtils;
+import org.apache.axis2.util.MessageContextBuilder;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.apache.geronimo.webservices.WebServiceContainer;
+import org.apache.ws.commons.schema.XmlSchema;
+
+
+public class Axis2WebServiceContainer implements WebServiceContainer {
+
+	private static final Log log = LogFactory.getLog(Axis2WebServiceContainer.class);
+
+    public static final String REQUEST = Axis2WebServiceContainer.class.getName() + "@Request";
+    public static final String RESPONSE = Axis2WebServiceContainer.class.getName() + "@Response";
+
+    private transient final ClassLoader classLoader;
+    private final String endpointClassName;
+    private final PortInfo portInfo;
+    private ConfigurationContext configurationContext;
+    private String contextRoot = null;
+    private Map servicesMap;
+    
+
+    public Axis2WebServiceContainer(PortInfo portInfo, String endpointClassName, ClassLoader classLoader) {
+        this.classLoader = classLoader;
+        this.endpointClassName = endpointClassName;
+        this.portInfo = portInfo;
+        try {
+            configurationContext = ConfigurationContextFactory.createDefaultConfigurationContext();
+            AxisService service = AxisService.createService(endpointClassName, configurationContext.getAxisConfiguration(), RPCMessageReceiver.class);
+            configurationContext.getAxisConfiguration().addService(service);
+        } catch (AxisFault af) {
+            throw new RuntimeException(af);
+        } catch (Exception e) {
+            throw new RuntimeException(e);
+        }
+    }
+
+    public void getWsdl(Request request, Response response) throws Exception {
+        doService(request, response);
+    }
+
+    public void invoke(Request request, Response response) throws Exception {
+        doService(request, response);
+    }
+
+    protected void doService(final Request request, final Response response)
+            throws Exception {
+        initContextRoot(request);
+
+        if (log.isDebugEnabled()) {
+        	log.debug("Target URI: " + request.getURI());
+        }
+
+        MessageContext msgContext = new MessageContext();
+        msgContext.setIncomingTransportName(Constants.TRANSPORT_HTTP);
+        msgContext.setProperty(MessageContext.REMOTE_ADDR, request.getRemoteAddr());
+
+        try {
+            TransportOutDescription transportOut = this.configurationContext.getAxisConfiguration()
+                    .getTransportOut(new QName(Constants.TRANSPORT_HTTP));
+            TransportInDescription transportIn = this.configurationContext.getAxisConfiguration()
+                    .getTransportIn(new QName(Constants.TRANSPORT_HTTP));
+
+            msgContext.setConfigurationContext(this.configurationContext);
+
+            //TODO: Port this segment for session support.
+//            String sessionKey = (String) this.httpcontext.getAttribute(HTTPConstants.COOKIE_STRING);
+//            if (this.configurationContext.getAxisConfiguration().isManageTransportSession()) {
+//                SessionContext sessionContext = this.sessionManager.getSessionContext(sessionKey);
+//                msgContext.setSessionContext(sessionContext);
+//            }
+            msgContext.setTransportIn(transportIn);
+            msgContext.setTransportOut(transportOut);
+            msgContext.setServiceGroupContextId(UUIDGenerator.getUUID());
+            msgContext.setServerSide(true);
+
+//            // set the transport Headers
+//            HashMap headerMap = new HashMap();
+//            for (Iterator it = request.headerIterator(); it.hasNext();) {
+//                Header header = (Header) it.next();
+//                headerMap.put(header.getName(), header.getValue());
+//            }
+//            msgContext.setProperty(MessageContext.TRANSPORT_HEADERS, headerMap);
+//
+//            this.httpcontext.setAttribute(AxisParams.MESSAGE_CONTEXT, msgContext);
+
+            doService2(request, response, msgContext);
+        } catch (Throwable e) {
+            try {
+                AxisEngine engine = new AxisEngine(this.configurationContext);
+
+                msgContext.setProperty(MessageContext.TRANSPORT_OUT, response.getOutputStream());
+                msgContext.setProperty(Constants.OUT_TRANSPORT_INFO, new Axis2TransportInfo(response));
+
+                MessageContext faultContext = MessageContextBuilder.createFaultMessageContext(msgContext, e);
+                // If the fault is not going along the back channel we should be 202ing
+                if (AddressingHelper.isFaultRedirected(msgContext)) {
+                    response.setStatusCode(202);
+                } else {
+                    response.setStatusCode(500);
+                }
+                engine.sendFault(faultContext);
+            } catch (Exception ex) {
+                if (AddressingHelper.isFaultRedirected(msgContext)) {
+                    response.setStatusCode(202);
+                } else {
+                    response.setStatusCode(500);
+                    response.setHeader(HTTPConstants.HEADER_CONTENT_TYPE, "text/plain");
+                    PrintWriter pw = new PrintWriter(response.getOutputStream());
+                    ex.printStackTrace(pw);
+                    pw.flush();
+                }
+            }
+        }
+
+    }
+
+    private void initContextRoot(Request request) {
+        if (contextRoot == null || "".equals(contextRoot)) {
+            String[] parts = JavaUtils.split(request.getContextPath(), '/');
+            if (parts != null) {
+                for (int i = 0; i < parts.length; i++) {
+                    if (parts[i].length() > 0) {
+                        contextRoot = parts[i];
+                        break;
+                    }
+                }
+            }
+            if (contextRoot == null || request.getContextPath().equals("/")) {
+                contextRoot = "/";
+            }
+            configurationContext.setContextRoot(contextRoot);
+        }
+    }
+
+    public void doService2(
+            final Request request,
+            final Response response,
+            final MessageContext msgContext) throws Exception {
+
+        ConfigurationContext configurationContext = msgContext.getConfigurationContext();
+        final String servicePath = configurationContext.getServiceContextPath();
+        final String contextPath = (servicePath.startsWith("/") ? servicePath : "/" + servicePath) + "/";
+
+        URI uri = request.getURI();
+        String path = uri.getPath();
+        String soapAction = request.getHeader(HTTPConstants.HEADER_SOAP_ACTION);
+        
+        HashMap services = configurationContext.getAxisConfiguration().getServices();
+        AxisService service = null;
+        String serviceName = null;
+        
+        if(services.size() == 1){
+        	service = (AxisService)(services.values().iterator().next());
+        	serviceName = (String)(services.keySet().iterator().next());
+        }else { // can't be happen
+        	log.error("Invalid service configurations ");
+        	throw new RuntimeException("Invalid Configuration");
+        }
+
+
+        // TODO: Port this section
+//        // Adjust version and content chunking based on the config
+//        boolean chunked = false;
+//        TransportOutDescription transportOut = msgContext.getTransportOut();
+//        if (transportOut != null) {
+//            Parameter p = transportOut.getParameter(HTTPConstants.PROTOCOL_VERSION);
+//            if (p != null) {
+//                if (HTTPConstants.HEADER_PROTOCOL_10.equals(p.getValue())) {
+//                    ver = HttpVersion.HTTP_1_0;
+//                }
+//            }
+//            if (ver.greaterEquals(HttpVersion.HTTP_1_1)) {
+//                p = transportOut.getParameter(HTTPConstants.HEADER_TRANSFER_ENCODING);
+//                if (p != null) {
+//                    if (HTTPConstants.HEADER_TRANSFER_ENCODING_CHUNKED.equals(p.getValue())) {
+//                        chunked = true;
+//                    }
+//                }
+//            }
+//        }
+        
+
+        if (request.getMethod() == Request.GET) {
+            if (!path.startsWith(contextPath)) {
+                response.setStatusCode(301);
+                response.setHeader("Location", contextPath);
+                return;
+            }
+            if (uri.toString().indexOf("?") < 0) {
+                if (!path.endsWith(contextPath)) {
+                    if (serviceName.indexOf("/") < 0) {
+                        String res = HTTPTransportReceiver.printServiceHTML(serviceName, configurationContext);
+                        PrintWriter pw = new PrintWriter(response.getOutputStream());
+                        pw.write(res);
+                        pw.flush();
+                        return;
+                    }
+                }
+            }
+            
+            if (uri.getQuery().startsWith("wsdl2")) {
+                if (service != null) {
+                    service.printWSDL2(response.getOutputStream(), uri.getHost(), servicePath);
+                    return;
+                }
+            }
+            if (uri.getQuery().startsWith("wsdl")) {
+            	if(service != null){
+            		service.printWSDL(response.getOutputStream(), uri.getHost(), servicePath);
+            		return;
+            	}
+            }
+            if (uri.getQuery().startsWith("xsd=")) {
+                if (service != null) {
+                    service.printSchema(response.getOutputStream());
+                    return;
+                }
+            }
+            //cater for named xsds - check for the xsd name
+            if (uri.getQuery().startsWith("xsd")) {
+                String schemaName = uri.getQuery().substring(uri.getQuery().lastIndexOf("=") + 1);
+
+                if (service != null) {
+                    //run the population logic just to be sure
+                    service.populateSchemaMappings();
+                    //write out the correct schema
+                    Map schemaTable = service.getSchemaMappingTable();
+                    final XmlSchema schema = (XmlSchema) schemaTable.get(schemaName);
+                    //schema found - write it to the stream
+                    if (schema != null) {
+                        schema.write(response.getOutputStream());
+                        return;
+                    } else {
+                        // no schema available by that name  - send 404
+                        response.setStatusCode(404);
+                        return;
+                    }
+                }
+            }
+
+            msgContext.setProperty(MessageContext.TRANSPORT_OUT, response.getOutputStream());
+            msgContext.setProperty(Constants.OUT_TRANSPORT_INFO, new Axis2TransportInfo(response));
+
+            // deal with GET request
+            boolean processed = HTTPTransportUtils.processHTTPGetRequest(
+                    msgContext,
+                    response.getOutputStream(),
+                    soapAction,
+                    path,
+                    configurationContext,
+                    HTTPTransportReceiver.getGetRequestParameters(path));
+
+            if (!processed) {
+                response.setStatusCode(200);
+                String s = HTTPTransportReceiver.getServicesHTML(configurationContext);
+                PrintWriter pw = new PrintWriter(response.getOutputStream());
+                pw.write(s);
+                pw.flush();
+            }
+
+        } else if (request.getMethod() == Request.POST) {
+            // deal with POST request
+
+            msgContext.setProperty(MessageContext.TRANSPORT_OUT, response.getOutputStream());
+            msgContext.setProperty(Constants.OUT_TRANSPORT_INFO, new Axis2TransportInfo(response));
+
+            String contenttype = request.getHeader(HTTPConstants.HEADER_CONTENT_TYPE);
+            HTTPTransportUtils.processHTTPPostRequest(
+                    msgContext,
+                    request.getInputStream(),
+                    response.getOutputStream(),
+                    contenttype,
+                    soapAction,
+                    path);
+
+        } else {
+            throw new UnsupportedOperationException("[" + request.getMethod() + " ] method not supported");
+        }
+
+        // Finalize response
+        OperationContext operationContext = msgContext.getOperationContext();
+        Object contextWritten = null;
+        Object isTwoChannel = null;
+        if (operationContext != null) {
+            contextWritten = operationContext.getProperty(Constants.RESPONSE_WRITTEN);
+            isTwoChannel = operationContext.getProperty(Constants.DIFFERENT_EPR);
+        }
+
+
+        if ((contextWritten != null) && Constants.VALUE_TRUE.equals(contextWritten)) {
+            if ((isTwoChannel != null) && Constants.VALUE_TRUE.equals(isTwoChannel)) {
+                response.setStatusCode(202);
+                return;
+            }
+            response.setStatusCode(200);
+        } else {
+            response.setStatusCode(202);
+        }
+    }
+    
+    public class Axis2TransportInfo implements OutTransportInfo {
+        private Response response;
+
+        public Axis2TransportInfo(Response response) {
+            this.response = response;
+        }
+
+        public void setContentType(String contentType) {
+            response.setHeader(HTTPConstants.HEADER_CONTENT_TYPE, contentType);
+        }
+    }
+
+}