[Installation, Configuration & Deployment] - Application works in Firefox, but loses Session in Internet
by karanmg
I have been working on a application and am facing this peculiar problem.
The application is very well tested, has quite a few installations, and has always worked fine with both IE and FF. But, not this time.
Setup:
Windows Server 2003 R2, Standard Edition, SP1.
P4, 2 Gb RAM.
JDK 1.5.0_06.
JBoss 4.0.1RC1
Apache 2.2.3 with mod_jk of the same version.
MySql 5.0.24 DB.
Once the user logins, the user object is placed in the HttpSession object. Then the application gets the user from the HttpSession and shows the corresponding menu items, based on the permissions the user has. But now when the user clicks on a menu item, the application is throwing a NullPointerException, which is the user is not in the session anymore.
This happens only in IE.
The same process is tested in Firefox, and the entire application works fine.
The application is not using cookies.
The site is in the Trusted Zone for IE.
The same IE displays all our other installation of the application without any issues.
The same code is deployed on another machine, and IE is able to display the application without any problem.
Only on this machine, from any IE, the user object is lost from the session.
And its not an Apache issue, because going by :8080 does the same thing.
Its not the DB, because even if I point the application to another DB, I get the same problem (only with IE).
Maybe, its not really a JBoss issue, because the application is working fine in Firefox.
But the session is lost.
Any ideas how to resolve this issue?
Plz let me know if you need some more info.
Thanks,
Karan
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3976457#3976457
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3976457
19 years, 9 months
[JBoss jBPM] - BPEL beta2 - switch condition boolean true/false
by KVAK_TNT
Hi there!
I have a problem to get my switch condition working.
So what have I done?
I have written an operation that checkes something and then will return me a boolean value true or false.
This operation is called directly before I start the switch () and therefore the Variable should be filled with true or false.
Now I've tried different ways to get it working... Here all versions I've tried and which where not working.
<case condition="bpel:getVariableData('checkGuardResponse', 'ValueOUT')"><case condition="bpel:getVariableData('checkGuardResponse', 'ValueOUT')='true'">
<case condition="bpel:getVariableData('checkGuardResponse', 'ValueOUT')=true()">
<case condition="boolean(bpel:getVariableData('checkGuardResponse', 'ValueOUT'))=true()">
<case condition="bpel:getVariableData('checkGuardResponse', 'ValueOUT')=string(true())">
In this case
checkGuardResponse is container and ValueOUT is my Variable OUT for my checkGuard operation.
What happens?
My switch / case code is not beeing executed.
By the way: I have not implemented an otherwise operation as I won't need it (it could be only true or false - and both will be handled by a case operation)
I would say the first one should be the right one (in this case I would use the otherwise operation) - but also not working.
As there are allready some other switch operations - I think it is not a failure of BPEL itself... Maybe only my codestyle ;-)
Thanks in advance for every help!
Greetings
Claus
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3976456#3976456
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3976456
19 years, 9 months