This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of DevSecOps Adventures: A Game-Changing Approach with Chocolate, LEGO, and Coaching Games and have Dana Pylayeva on-line!
See this thread for details.
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Tim Cooke
Sheriffs:
  • Rob Spoor
  • Liutauras Vilda
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
  • Piet Souris
Bartenders:
  • Stephan van Hulst

Request getting refershing for every 5 minutes

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I have Strange problem with the weblogic server
In my application i have dynamic report so when i click the report , the same request is getting posted for every 5 mins( ie the query relating to the report is getting fired for every 5 minutes) and the result is not coming even after 30mins.
Is there any preference or option where this time is mentioned or any other solution
can any one help me out
Thanks & Regards
Sudhakar
 
sudhakar dhavala
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The server installed on the production environment is weblogic 8.1 with SP4
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You would need to provide a lot more detail on this one... though in all cases where I have encountered problems like this they have always come down to programmer error. Best bet, hook up a remote debugger using IDEA (or your IDE of choice) and step line by line through the execution... I am sure it is doing something you are not expecting.

To enable Remote Debugging in WebLogic (or any other Java process) add the following to your startWebLogic JAVA_OPTIONS:
-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005

Goto your IDE, set the breakpoints in your server-side code, and start a Remote Debugger Process (using 5005 as the port). Bring up you application and execute your action and you should hit the expected breakpoints... very easy!
 
Ranch Hand
Posts: 90
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you using a proxy ?

In the proxy, 5 mins is a default for WLIOTimeoutSecs (previously HungServerRecoverSecs)

Of course, you may still have an issue in your application
 
sudhakar dhavala
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi Bengtson,

Thanks very much, The problem got solved with ur suggestion,

Thanks & Regards
Sudhakar
 
Don't mess with me you fool! I'm cooking with gas! Here, read this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic