Results 1 to 2 of 2

Thread: Possible HTTP Invoker Timout on Long Transaction?

  1. #1
    Join Date
    Dec 2004
    Location
    Miami Lakes, Fl
    Posts
    3

    Default Possible HTTP Invoker Timout on Long Transaction?

    Hello,

    I am running a long transaction from client gui to server using an HTTP Invoker, configuration below:

    Code:
    Client:
    <bean id="dimServiceProxy" class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
        <property name="serviceUrl">            
            <value>http&#58;//localhost&#58;8080/SysManager/remoting/SysRemoteInterface</value>
        </property>
        <property name="serviceInterface">
            <value>service.SysManagerFacade</value>
        </property>
    </bean>
    
    Server&#58;
    <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>
    After about 15 minutes of running, it just hangs. No error messages or log entries are being generated. I've
    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.

  2. #2
    Join Date
    Dec 2004
    Location
    Miami Lakes, Fl
    Posts
    3

    Default

    The problem turned out to be an issue with that database and my lack of experience with MS SQL Server. I commited every 1000 rows and it worked fine.

Similar Threads

  1. Unit testing with JOTM and JtaTransactionManager
    By lalle in forum Architecture
    Replies: 1
    Last Post: Oct 15th, 2005, 09:05 AM
  2. Spring HTTP Invoker and HTTP Forwarding Proxy
    By dkar77 in forum Remoting
    Replies: 3
    Last Post: Sep 21st, 2005, 08:59 PM
  3. Replies: 0
    Last Post: Jun 6th, 2005, 06:22 AM
  4. Replies: 3
    Last Post: Nov 19th, 2004, 07:16 PM
  5. Transaction pb Hibernate/MySQL
    By syluser in forum Data
    Replies: 2
    Last Post: Aug 28th, 2004, 02:40 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •