Hi, In
HttpServerCall.sendResponse
the method first checks for an ResponseStream and if the stream is
null it checks for an ResponseChannel (line 224).
[...]
if (getResponseStream() != null)
{
entity.write(getResponseStream());
}
else if (getResponseChannel() != null)
{
entity.write(getResponseChannel());
}
[...]
Shouldn't that be done the other way around? The channel should be
preferred.
Best regards,
Lars
--
http://www.semagia.com

