001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common Development
008: * and Distribution License("CDDL") (collectively, the "License"). You
009: * may not use this file except in compliance with the License. You can obtain
010: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
011: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
012: * language governing permissions and limitations under the License.
013: *
014: * When distributing the software, include this License Header Notice in each
015: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
016: * Sun designates this particular file as subject to the "Classpath" exception
017: * as provided by Sun in the GPL Version 2 section of the License file that
018: * accompanied this code. If applicable, add the following below the License
019: * Header, with the fields enclosed by brackets [] replaced by your own
020: * identifying information: "Portions Copyrighted [year]
021: * [name of copyright owner]"
022: *
023: * Contributor(s):
024: *
025: * If you wish your version of this file to be governed by only the CDDL or
026: * only the GPL Version 2, indicate your decision by adding "[Contributor]
027: * elects to include this software in this distribution under the [CDDL or GPL
028: * Version 2] license." If you don't indicate a single choice of license, a
029: * recipient has the option to distribute your version of this file under
030: * either the CDDL, the GPL Version 2 or to extend the choice of license to
031: * its licensees as provided above. However, if you add GPL Version 2 code
032: * and therefore, elected the GPL Version 2 license, then the option applies
033: * only if the new code is made subject to such option by the copyright
034: * holder.
035: */
036:
037: package com.sun.xml.ws.transport.http.servlet;
038:
039: import com.sun.istack.Nullable;
040:
041: import javax.servlet.ServletConfig;
042: import javax.servlet.ServletException;
043: import javax.servlet.http.HttpServlet;
044: import javax.servlet.http.HttpServletRequest;
045: import javax.servlet.http.HttpServletResponse;
046:
047: /**
048: * The JAX-WS dispatcher servlet.
049: *
050: * <p>
051: * It really just forwards processing to {@link WSServletDelegate}.
052: *
053: * @author WS Development Team
054: */
055: public class WSServlet extends HttpServlet {
056: private WSServletDelegate delegate = null;
057:
058: public void init(ServletConfig servletConfig)
059: throws ServletException {
060: super .init(servletConfig);
061: delegate = getDelegate(servletConfig);
062: }
063:
064: /**
065: * Gets the {@link WSServletDelegate} that we will be forwarding the requests to.
066: *
067: * @return
068: * null if the deployment have failed and we don't have the delegate.
069: */
070: protected @Nullable
071: WSServletDelegate getDelegate(ServletConfig servletConfig) {
072: return (WSServletDelegate) servletConfig.getServletContext()
073: .getAttribute(JAXWS_RI_RUNTIME_INFO);
074: }
075:
076: protected void doPost(HttpServletRequest request,
077: HttpServletResponse response) throws ServletException {
078: if (delegate != null) {
079: delegate.doPost(request, response, getServletContext());
080: }
081: }
082:
083: protected void doGet(HttpServletRequest request,
084: HttpServletResponse response) throws ServletException {
085: if (delegate != null) {
086: delegate.doGet(request, response, getServletContext());
087: }
088: }
089:
090: protected void doPut(HttpServletRequest request,
091: HttpServletResponse response) throws ServletException {
092: if (delegate != null) {
093: delegate.doPut(request, response, getServletContext());
094: }
095: }
096:
097: protected void doDelete(HttpServletRequest request,
098: HttpServletResponse response) throws ServletException {
099: if (delegate != null) {
100: delegate.doDelete(request, response, getServletContext());
101: }
102: }
103:
104: /**
105: * {@link WSServletDelegate}.
106: */
107: public static final String JAXWS_RI_RUNTIME_INFO = "com.sun.xml.ws.server.http.servletDelegate";
108: public static final String JAXWS_RI_PROPERTY_PUBLISH_WSDL = "com.sun.xml.ws.server.http.publishWSDL";
109: public static final String JAXWS_RI_PROPERTY_PUBLISH_STATUS_PAGE = "com.sun.xml.ws.server.http.publishStatusPage";
110:
111: }
|