• 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
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Weblogic Session Issue

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear All,

We have a situation (very strange one). Here is the setup.
Our application is written in struts 1.1. The configuration is as follow.

Internet --> Sun One Web Server (7.0) --> WebLogic (10) ---> Database

Our application has one page where we will receive form post variable from browser client and display the information based on the data in the form.
Currently, if there are two clients coming in at the same time, 2nd user is seeing first user's page. Our application receives the data posted by 2nd user but the page for the 1st user is served to 2nd user.

Help!

Is it configuration issue?

Aung
 
Ranch Hand
Posts: 826
Eclipse IDE Oracle Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
At the plugin level, set Debug to all and run the following url from the client to see if the requests from the plugin to the weblogic servers are being processed correct:

Example configuration for plug-in (httpd.conf) :

<Location /mywebapp>
WebLogicCluster sol1:8001,sol2:8001,sol3:8003
Debug ALL
DebugConfigInfo ON
WLLogFile /tmp/wlproxy.log
</Location>

The proxy bridge page can be viewed with an URL as follows:

htp://localhost:8080/session_replicate2/?__WebLogicBridgeConfig

localhost:8080 invokes the proxy.

session_replicate2 is the name of my application.

Observe the result in the browser to find out more about the issue.

Hope this helps!
 
Aung Nualkumma
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you for your reply. Would you please share what the expected result is?

 
sudipto shekhar
Ranch Hand
Posts: 826
Eclipse IDE Oracle Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


The output will display the plugin settings, the request flow, etc.

I would suggest you to try that out at your end!
 
You showed up just in time for the waffles! And this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic