• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

BEA Weblogic 8.1>> Request is getting timed out

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I have simple struts app.
Flow of app as:
Action call(.do call)> DB interaction (fetch huge data)>bring back and show on jsp page

we are not using any BEA pooling. So there is no question that there is BEA conn pool time out. we have tested this application in test environment and it is taking aroun 20 min to display page but it never shows Error 500. on the other hand, when we deployed this production, it is giving error 500 if request taked more that 1.5 min to preocess.

If request is getting completed (including data fetch from DB) withing 1.5 min, the jsp page will be shown.

Any help and suggestions are highly appreciable.

Thank you.
 
Kaddy Mud
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
even i searched a lot on this. is ther any way, we can change application side settings? update web.xml/weblogic.xml? if server side settings cam be avoided, that will be great...
 
Ranch Hand
Posts: 95
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I will have to check and get back to you on this.. but I do not think the connection pool timeout is specific to using a bea driver.
I also think there is a session timeout setting in weblogic. Again will have to check and get back to you.
Which is the test environment in which you have test?
Also please compare the config.xml of the 2 env where you have tested the app. I assume you have already done that. That could give an idea as to why you get the error after so long.

Off the track, are you sure your application users can wait that long for a page to load? 20 mins, it is huge. Even if weblogic doesn't time out the user might just timeout himself

HTH
Shikhar
[ June 30, 2008: Message edited by: Shikhar Madhok ]
 
Shikhar Madhok
Ranch Hand
Posts: 95
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can configure the session time out for a web app in the web.xml
Check weblogic 8.1 docs.

Also it would help if you could post the server logs when you get the 500 error. That may help us debug the problem better.

HTH
Shikhar
 
Ranch Hand
Posts: 125
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, it could be an HTTP timeout (not session or JDBC related)...this parameter could be configured for example on a HTTP proxy...check if there's something like that...

Regards
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic