Hessian service exporter sets content type "application/x-hessian" (SPR-5621)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@887 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller 2009-03-31 14:36:46 +00:00
parent c759465a5e
commit fde7f5dbc7
3 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,9 @@ import org.springframework.util.CommonsLogWriter;
*/
public class HessianExporter extends RemoteExporter implements InitializingBean {
public static final String CONTENT_TYPE_HESSIAN = "application/x-hessian";
private SerializerFactory serializerFactory = new SerializerFactory();
private Log debugLogger;

View File

@ -61,6 +61,7 @@ public class HessianServiceExporter extends HessianExporter implements HttpReque
new String[] {"POST"}, "HessianServiceExporter only supports POST requests");
}
response.setContentType(CONTENT_TYPE_HESSIAN);
try {
invoke(request.getInputStream(), response.getOutputStream());
}

View File

@ -66,6 +66,7 @@ public class SimpleHessianServiceExporter extends HessianExporter implements Htt
throw new IOException("Hessian skeleton invocation failed", ex);
}
exchange.getResponseHeaders().set("Content-Type", CONTENT_TYPE_HESSIAN);
exchange.sendResponseHeaders(200, output.size());
FileCopyUtils.copy(output.toByteArray(), exchange.getResponseBody());
}