I'm working on a Servlet and trying to log the requests. The crucial part of the code causing the error is the following:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
StringWriter writer = new StringWriter();
IOUtils.copy(request.getInputStream(), writer);
Message.Builder builder = something of type com.google.protobuf.GeneratedMessage.Builder;
builder.mergeFrom(writer.toString().getBytes());
}
The final line of code above results in the following Exception:
com.google.protobuf.InvalidProtocolBufferException: Protocol message tag had invalid wire type.
However, when the code is switched to:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
Message.Builder builder = something of type com.google.protobuf.GeneratedMessage.Builder;
builder.mergeFrom(request.getInputStream());
}
There is no error, and everything works fine. What could the problem be? I seem to need something similar to the first code snippet because I need to use the input stream a second time (once to write it to a file, and once to process the actual request).
dataget constructed? – limc Feb 5 '11 at 3:40