This content has been marked as final.
Show 2 replies
-
1. Re: Socket Timeout?
ron_sigal Mar 19, 2009 2:28 AM (in response to klester)If you're using the UnifiedInvoker, which is based on JBossRemoting, then you can go to $JBOSS_HOME/server/$CONFIG/conf/jboss-service.xml and update the "jboss.remoting:service=Connector,transport=socket" MBean with a "timeout" parameter:
<mbean code="org.jboss.remoting.transport.Connector" name="jboss.remoting:service=Connector,transport=socket" display-name="Socket transport Connector"> <attribute name="Configuration"> <config> <invoker transport="socket"> ... <!-- set timeout to one minute --> <attribute name="timeout" isParam="true">60000</attribute> ... </invoker> ... </config> </attribute> </mbean>
-
2. Re: Socket Timeout?
klester Aug 19, 2009 2:58 PM (in response to klester)Thanks for the info, that was the nudge that I needed to get the timeouts to work.
See http://www.jboss.org/index.html?module=bb&op=viewtopic&t=152166 for the full details on how to get this to work.
Thanks
Kevin