org.wso2.carbon.wsdl2form.StubRequestProcessor.java Source code

Java tutorial

Introduction

Here is the source code for org.wso2.carbon.wsdl2form.StubRequestProcessor.java

Source

/*
 * Copyright 2005-2007 WSO2, Inc. (http://wso2.com)
 *
 * Licensed 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.wso2.carbon.wsdl2form;

import org.apache.axis2.context.ConfigurationContext;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.http.protocol.HTTP;
import org.wso2.carbon.core.transports.CarbonHttpRequest;
import org.wso2.carbon.core.transports.CarbonHttpResponse;
import org.wso2.carbon.core.transports.HttpGetRequestProcessor;
import org.wso2.carbon.CarbonException;
import org.wso2.carbon.registry.core.RegistryConstants;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.xml.transform.Result;
import javax.xml.transform.stream.StreamResult;
import java.io.OutputStream;

public class StubRequestProcessor implements HttpGetRequestProcessor {

    private static Log log = LogFactory.getLog(StubRequestProcessor.class);

    public void process(CarbonHttpRequest request, CarbonHttpResponse response,
            ConfigurationContext configurationContext) throws Exception {

        OutputStream outputStream = response.getOutputStream();
        String requestURL = request.getRequestURL() + "?" + request.getQueryString();
        String serviceParameter = request.getParameter(WSDL2FormGenerator.SERVICE_QUERY_PARAM);
        String endpointParameter = request.getParameter(WSDL2FormGenerator.ENDPOINT_QUERY_PARAM);
        String languageParameter = request.getParameter(WSDL2FormGenerator.LANGUAGE_QUERY_PARAM);
        String localhostParameter = request.getParameter(WSDL2FormGenerator.LOCALHOST_QUERY_PARAM);
        String contentTypeParameter = request.getParameter(WSDL2FormGenerator.CONTENT_TYPE_QUERY_PARAM);

        try {
            Result result = new StreamResult(outputStream);
            String contentType = WSDL2FormGenerator.getInstance().getJSStub(result, configurationContext,
                    requestURL, serviceParameter, endpointParameter, languageParameter, localhostParameter,
                    contentTypeParameter);
            response.addHeader(HTTP.CONTENT_TYPE, contentType);
        } catch (CarbonException e) {
            log.error("Cannot generate stub", e);
            response.addHeader(HTTP.CONTENT_TYPE, "text/html; charset=utf-8");
            if (e.getMessage().equals(WSDL2FormGenerator.SERVICE_INACTIVE)) {
                response.setStatus(HttpServletResponse.SC_NOT_FOUND);
                outputStream.write(("<h4>Requested Service is inactive. Cannot generate stubs.</h4>").getBytes());
                outputStream.flush();
                return;
            } else if (e.getMessage().equals(WSDL2FormGenerator.SERVICE_NOT_FOUND)) {
                response.setStatus(HttpServletResponse.SC_SERVICE_UNAVAILABLE);
                outputStream.write(("<h4>Service cannot be found. Cannot display <em>Stub</em>.</h4>").getBytes());
                outputStream.flush();
                return;
            } else if (e.getMessage().equals(WSDL2FormGenerator.UNSUPPORTED_LANG)) {
                response.setError(HttpServletResponse.SC_NOT_FOUND);
                outputStream.write(("<h4>Unsupported lang parameter " + languageParameter + "</h4>").getBytes());
                outputStream.flush();
                return;
            } else {
                response.setError(HttpServletResponse.SC_NOT_FOUND);
                response.addHeader(HTTP.CONTENT_TYPE, "text/html; charset=utf-8");
                outputStream.write(("<h4>" + e.getMessage() + "</h4>").getBytes());
                outputStream.flush();
                return;
            }
        }
    }
}