0

I need your help in getting rid of the below warning because it is stopping me of doing any activity in the jsf page:

Socket BEA-000449 Closing socket as no data read from it on XXX.XXX.XXX.XX,XXX during the configured idle timeout of 5 secs

I tried changing the session timeout in web.xml, but still it shows the above warning:

<session-config>
    <session-timeout>200</session-timeout>
  </session-config>
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
99maas
  • 1,239
  • 12
  • 34
  • 59
  • You changed the wrong thing. Session timeout != socket idle timeout. – user207421 Aug 06 '15 at 18:50
  • @EJP So where should I change? – 99maas Aug 07 '15 at 06:51
  • Have you edited your server start params to include: `-Dweblogic.client.socket.ConnectTimeout=` See: https://community.oracle.com/message/11124702 or http://stackoverflow.com/questions/2973822/weblogc-bea-000449-closing-socket-as-no-data-read-from-it-during-the-configure – Display Name is missing Aug 10 '15 at 19:23

1 Answers1

1

You can use JAVA_OPTIONS to set this parameter. In you start script add the following Java option:

-Dweblogic.client.socket.ConnectTimeout=XXX

where XXX is value in ms. Also you can read the following thread from Oracle: https://community.oracle.com/thread/2125724

DruidKuma
  • 2,352
  • 2
  • 17
  • 20