I use this topic because i don't know how to describe my situation, Below is my environment
- AppServer: Tomcat 6.0.35
- JDK:1.5.0_22
- JQuery:1.7.1
- LDAP Server:SunONE LDAP 5.2
- Database:Oracle 11g
- Framework:spring 3.1.0
our application is a LDAP java web management console which deploy on tomcat, we mainly use ajax request to improve user experience, we have so many ajax calls to the app server which connect ldap server and database server.
when we start our application, it works perfect, but after a few hours, some ajax calls failed, after my investigation, only the modification to ldap's request failed on no response, but the query and list function works well, so i do some trys below.
- I install a ldap client on the application server, try to use client to modify ldap - success
- our application also update the database, i try it , it works.
- our application query ldap function works well
- we use firebug to trace connection, found the call is hug until time out reached.
So we can give a conclusion
- the tomcat response is correct - because query is ok, update database is ok.
- jquery ajax seems ok, because except modification, other ajax calls works
- ldap is ok, because we can update by client.
- all the ajax call is ok, because we can use a few hours util no reponse error occurs
So i am sucks on this problems, please try to help me out.
any suggestion is very appreciated