Re: Concept doubt about threads servlets

2012-09-29 Thread Mark Thomas
André Warnier a...@ice-sa.com wrote: Jose María Zaragoza wrote: Hello: I've got a concept doubt about if it's possible perform many calls to the same servlet ( on the same session ) if the previous one didn't finish. Can you explain how precisely you would do that ? See below. I'd

Re: Concept doubt about threads servlets

2012-09-29 Thread Jose María Zaragoza
Thanks Yes, but I am curious how you would make a browser send several requests in a row on the same connection, without waiting for the first request to return a response. For example, with AJAX calls Well , I suppose that diferents AJAX calls go throught the same TCP connection, but I'm not

Problems with Realm

2012-09-29 Thread sohsoh
Hello Tomcatters, I am beginner in development, I wanted to do the user authentication, I am I followed a tutorial for it to the letter, but in the final step I fell into a problem that I did not arrive for a week of web search to solve it -- after login he goes search on the database and when

Re: Problems with Realm

2012-09-29 Thread Jose María Zaragoza
Maybe the web page requested (under /pages/protected/admin/*) is allowed to visit after you login, but that page could need to access to resources stored under others folders non-authorized Try to access a simple web page ( a blank page ) stored under /pages/protected/admin/ to test if realm

Re: Problems with Realm

2012-09-29 Thread sohsoh
I tried and the same problem ! -- View this message in context: http://tomcat.10.n6.nabble.com/Problems-with-Realm-tp4987265p4987268.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe,

Re: Problems with Realm

2012-09-29 Thread Jose María Zaragoza
Have a look at Tomcat log files 2012/9/29 sohsoh boudali.souh...@gmail.com: I tried and the same problem ! -- View this message in context: http://tomcat.10.n6.nabble.com/Problems-with-Realm-tp4987265p4987268.html Sent from the Tomcat - User mailing list archive at Nabble.com.

Re: Static Membership Session Replication

2012-09-29 Thread John Rellis
On Sep 28, 2012 3:42 PM, Konstantin Kolinko knst.koli...@gmail.com wrote: 2012/9/28 John Rellis john.d.rel...@gmail.com: (...) Keiichi, Thanks. OK so, when my tomcat starts it says : INFO: Receiver Server Socket bound to:localhost/127.0.0.1:4110 You reckon this should say the

RE: Problems with Realm

2012-09-29 Thread Martin Gainty
Jose is correct did you implement these steps from the documentation: http://tomcat.apache.org/tomcat-7.0-doc/funcspecs/fs-jdbc-realm.html Acquire the one and only connection [Current] or acquire a connection from the connection pool [Requested]. MGdo you have a valid connection handle?

Re: Having web app deployment

2012-09-29 Thread ASIYA LABARAN
Chris, What was the name of the folder? When you unzipped Tomcat, what folder did it go into (example: C:\Tomcat\Apache Tomcat 6.0.35)? C:\MifosInstall\Tomcat\Apache Tomcat 6.0.35 Specifically, which environment variables did you set, and what were their values? JAVA_HOME value:  C:\Program

Re: Problems with Realm

2012-09-29 Thread Konstantin Kolinko
2012/9/29 sohsoh boudali.souh...@gmail.com: Hello Tomcatters, I am beginner in development, I wanted to do the user authentication, I am I followed a tutorial for it to the letter, but in the final step I fell into a problem that I did not arrive for a week of web search to solve it -- after

Re: Problems with Realm

2012-09-29 Thread sohsoh
from log file 29 sept. 2012 08:50:36 org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 29 sept. 2012 08:50:36 org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 29 sept. 2012 08:51:52

Re: Problems with Realm

2012-09-29 Thread sohsoh
I resolved it by changing the column of login from name to user_name ,,, thanks to all those who want to help me -- View this message in context: http://tomcat.10.n6.nabble.com/Problems-with-Realm-tp4987265p4987275.html Sent from the Tomcat - User mailing list archive at Nabble.com.

Re: Tomcat 6 serious issues on AIX 5.3

2012-09-29 Thread Pid *
On 28 Sep 2012, at 20:00, vincent.soo...@daimler.com vincent.soo...@daimler.com wrote: Post your DBCP configuration and let's see what can be done with it. As above. p - To unsubscribe, e-mail:

Re: Concept doubt about threads servlets

2012-09-29 Thread André Warnier
Jose María Zaragoza wrote: Thanks Yes, but I am curious how you would make a browser send several requests in a row on the same connection, without waiting for the first request to return a response. For example, with AJAX calls Well , I suppose that diferents AJAX calls go throught the

Question on realm configuration in TC 6 / 7

2012-09-29 Thread Josh Gooding
It seems that I have run into something that seems a bit strange. I have configured 4 separate web applications to each have their own context.xml files. I have also configured one of the web applications to have a realm. It seems to me, when you configure a realm, tomcat forces you to put what