IOException showing up in production logs under a load
John Norris
Greenhorn
Joined: Jul 22, 2008
Posts: 14
posted
0
Hi,
I've got an error that's been showing up on my production servers but not in the stage servers. So far I've had very little luck researching this issue. Based on some documentation from IBM, they refer to web services problem and recommend making WAS configuration changes. However, this application is not using web services.
Any help would be greatly appreciated!
[5/11/09 8:09:15:611 EDT] 000009fa SRTServletReq E SRVE0133E: An error occurred while parsing parameters. java.io.IOException: Connection close: Read failed. Possible end of stream encountered.
at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:725)
at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:979)
at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1064)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1473)
Cameron Wallace McKenzie
author and cow tipper
Saloon Keeper
Could there be a proxy server limiting the size of packets or content going across the network? Looks like perhaps the message is being truncated mid-stream.
Cameron Wallace McKenzie wrote:Could there be a proxy server limiting the size of packets or content going across the network? Looks like perhaps the message is being truncated mid-stream.
Just an idea.
-Cameron McKenzie
Thanks for the tip. That could definitely be the problem as the payload is rather large. I'll let you know what I find out