org.apache.xmlrpc.webserver.XmlRpcServletServer Maven / Gradle / Ivy
/*
* 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.xmlrpc.webserver;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.xmlrpc.XmlRpcException;
import org.apache.xmlrpc.common.ServerStreamConnection;
import org.apache.xmlrpc.common.XmlRpcHttpRequestConfig;
import org.apache.xmlrpc.common.XmlRpcHttpRequestConfigImpl;
import org.apache.xmlrpc.common.XmlRpcStreamRequestConfig;
import org.apache.xmlrpc.server.XmlRpcHttpServer;
import org.apache.xmlrpc.server.XmlRpcHttpServerConfig;
import org.apache.xmlrpc.util.HttpUtil;
/** An extension of {@link org.apache.xmlrpc.server.XmlRpcServer},
* which is suitable for processing servlet requests.
*/
public class XmlRpcServletServer extends XmlRpcHttpServer {
protected static class ServletStreamConnection implements ServerStreamConnection {
private final HttpServletRequest request;
private final HttpServletResponse response;
protected ServletStreamConnection(HttpServletRequest pRequest,
HttpServletResponse pResponse) {
request = pRequest;
response = pResponse;
}
/** Returns the servlet request.
* @return the request
*/
public HttpServletRequest getRequest() { return request; }
/** Returns the servlet response.
* @return the response
*/
public HttpServletResponse getResponse() { return response; }
public InputStream newInputStream() throws IOException {
return request.getInputStream();
}
public OutputStream newOutputStream() throws IOException {
response.setContentType("text/xml");
return response.getOutputStream();
}
public void close() throws IOException {
response.getOutputStream().close();
}
}
/** Create a new config.
* @param pRequest The request object.
* @return the config
*/
protected XmlRpcHttpRequestConfigImpl newConfig(HttpServletRequest pRequest) {
return new XmlRpcHttpRequestConfigImpl();
}
protected XmlRpcHttpRequestConfigImpl getConfig(HttpServletRequest pRequest) {
XmlRpcHttpRequestConfigImpl result = newConfig(pRequest);
XmlRpcHttpServerConfig serverConfig = (XmlRpcHttpServerConfig) getConfig();
result.setBasicEncoding(serverConfig.getBasicEncoding());
result.setContentLengthOptional(serverConfig.isContentLengthOptional()
&& (pRequest.getHeader("Content-Length") == null));
result.setEnabledForExtensions(serverConfig.isEnabledForExtensions());
result.setGzipCompressing(HttpUtil.isUsingGzipEncoding(pRequest.getHeader("Content-Encoding")));
result.setGzipRequesting(HttpUtil.isUsingGzipEncoding(pRequest.getHeaders("Accept-Encoding")));
result.setEncoding(pRequest.getCharacterEncoding());
result.setEnabledForExceptions(serverConfig.isEnabledForExceptions());
HttpUtil.parseAuthorization(result, pRequest.getHeader("Authorization"));
return result;
}
protected ServletStreamConnection newStreamConnection(HttpServletRequest pRequest,
HttpServletResponse pResponse) {
return new ServletStreamConnection(pRequest, pResponse);
}
/** Processes the servlet request.
* @param pRequest The servlet request being read.
* @param pResponse The servlet response being created.
* @throws IOException Reading the request or writing the response failed.
* @throws ServletException Processing the request failed.
*/
public void execute(HttpServletRequest pRequest, HttpServletResponse pResponse)
throws ServletException, IOException {
XmlRpcHttpRequestConfigImpl config = getConfig(pRequest);
ServletStreamConnection ssc = newStreamConnection(pRequest, pResponse);
try {
super.execute(config, ssc);
} catch (XmlRpcException e) {
throw new ServletException(e);
}
}
/** Returns, whether the requests content length is required.
*/
protected boolean isContentLengthRequired(XmlRpcStreamRequestConfig pConfig) {
if (!pConfig.isEnabledForExtensions()) {
// The spec requires a content-length.
return true;
}
boolean isRequired = !((XmlRpcHttpServerConfig) getConfig()).isContentLengthOptional();
if(pConfig instanceof XmlRpcHttpRequestConfig) {
isRequired |= !((XmlRpcHttpRequestConfig)pConfig).isContentLengthOptional();
}
return isRequired;
}
protected OutputStream getOutputStream(XmlRpcStreamRequestConfig pConfig,
ServerStreamConnection pConnection,
int pSize) throws IOException {
if (pSize != -1) {
((ServletStreamConnection) pConnection).getResponse().setContentLength(pSize);
}
return super.getOutputStream(pConfig, pConnection, pSize);
}
protected void setResponseHeader(ServerStreamConnection pConnection, String pHeader, String pValue) {
((ServletStreamConnection) pConnection).getResponse().setHeader(pHeader, pValue);
}
}