Hello,
I am running a long transaction from client gui to server using an HTTP Invoker, configuration below:
After about 15 minutes of running, it just hangs. No error messages or log entries are being generated. I'veCode:Client: <bean id="dimServiceProxy" class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean"> <property name="serviceUrl"> <value>http://localhost:8080/SysManager/remoting/SysRemoteInterface</value> </property> <property name="serviceInterface"> <value>service.SysManagerFacade</value> </property> </bean> Server: <bean name="/SysRemoteInterface" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"> <property name="service"><ref bean="sysManagerFacade"/></property> <property name="serviceInterface"> <value>service.SysManagerFacade</value> </property> </bean>
checked the database (SQL Server) to make sure the logs where not full. Could the problem be a servlet
timeout? And if so, how can I extend the timeout?
Thanks!
Jose.


Reply With Quote