|
| 1 | +/* |
| 2 | + * To change this license header, choose License Headers in Project Properties. |
| 3 | + * To change this template file, choose Tools | Templates |
| 4 | + * and open the template in the editor. |
| 5 | + */ |
| 6 | +package com.caucho.hessian.huang; |
| 7 | + |
| 8 | +import java.io.IOException; |
| 9 | +import java.util.Enumeration; |
| 10 | +import javax.servlet.ServletException; |
| 11 | +import javax.servlet.http.HttpServletRequest; |
| 12 | +import javax.servlet.http.HttpServletResponse; |
| 13 | +import org.springframework.web.HttpRequestMethodNotSupportedException; |
| 14 | +import org.springframework.web.util.NestedServletException; |
| 15 | + |
| 16 | +/** |
| 17 | + * |
| 18 | + * @author huang |
| 19 | + */ |
| 20 | +public class HessianServiceExporter extends org.springframework.remoting.caucho.HessianServiceExporter { |
| 21 | + @Override |
| 22 | + public void handleRequest(HttpServletRequest request, HttpServletResponse response) |
| 23 | + throws ServletException, IOException { |
| 24 | + |
| 25 | + if (!"POST".equals(request.getMethod())) { |
| 26 | + throw new HttpRequestMethodNotSupportedException(request.getMethod(), |
| 27 | + new String[] {"POST"}, "HessianServiceExporter only supports POST requests"); |
| 28 | + } |
| 29 | + |
| 30 | + handleHessianHeader(request); |
| 31 | + |
| 32 | + response.setContentType(CONTENT_TYPE_HESSIAN); |
| 33 | + try { |
| 34 | + invoke(request.getInputStream(), response.getOutputStream()); |
| 35 | + } catch (Throwable ex) { |
| 36 | + throw new NestedServletException("Hessian skeleton invocation failed", ex); |
| 37 | + } finally { |
| 38 | + HessianHeaderContext.close(); |
| 39 | + } |
| 40 | + } |
| 41 | + |
| 42 | + protected void handleHessianHeader(HttpServletRequest request) { |
| 43 | + HessianHeaderContext context = HessianHeaderContext.getContext(); |
| 44 | + Enumeration enumeration = request.getHeaderNames(); |
| 45 | + while (enumeration.hasMoreElements()) { |
| 46 | + String name = enumeration.nextElement().toString(); |
| 47 | + String value = request.getHeader(name); |
| 48 | + context.addHeader(name, value); |
| 49 | + } |
| 50 | + } |
| 51 | +} |
0 commit comments