/* */ {
/* 149 */ response.setContentType(requestContentType);
/* 150 */ int iContentLength = getContentLength(invocationResponse);
/* 151 */ response.setContentLength(iContentLength);
/* 152 */ ServletOutputStream outputStream = response.getOutputStream();
/* 153 */ Marshaller marshaller = MarshalFactory.getMarshaller("http", getSerializationType());
/* 154 */ if ((marshaller instanceof VersionedMarshaller))
/* 155 */ ((VersionedMarshaller)marshaller).write(invocationResponse, outputStream, Version.getDefaultVersion());
/* */ else
/* 157 */ marshaller.write(invocationResponse, outputStream);
/* 158 */ outputStream.close();
/* */ }
/* */
/* */ }
/* */ catch (ClassNotFoundException e)