Re: Where can I find the thread main?

2007-10-09 Thread Joshua Fielek
Very briefly, the Java Main thread for Tomcat is created when Tomcat is launched. Tomcat creates threads that then execute your servlets and associated code. I'm certain that other folks will point you at more complete documentation on the way Tomcat works within the JVM. Thanks, J Jaime Al

Re: Sending Mail from a Java WebApplication does not work

2007-10-04 Thread Joshua Fielek
We just went through this -- make sure you're not sending the mail from an IP address. gmail red flags anything sent from an ip address. J Arun wrote: Gabe, That is great. yes, It is sending mails to junk folder. Thanks a lot lol. How can I avoid it ? why does gmail treats this mail as spam?

Re: Foreign Language on web

2007-10-03 Thread Joshua Fielek
IMO, this is not tomcat specific, so reply to me off line if you want to discuss it further. I'm not 100% certain, but shouldn't you simply be specifying the appropriate international character set to use for that instance of your application? A text field is a text field, it's the character s

Re: Legal Risk of Using Tomcat

2007-09-07 Thread Joshua Fielek
A good resource would be: http://www.opensolutionsalliance.org/ There are lots of knowledgeable people for the various licensing models. You'll have to register, but all it takes is an email address to do so. After that, check out Community->forums and ask away. Thanks, J For the most part,

Re: Question about Session MGMT

2007-09-06 Thread Joshua Fielek
That is because you have one session per browser session. If you open a new tab, and log back in, the session is switched to the new user. If you open another instance of IE/FF in another process, you should get another session. if you open another type of browser (Opera, etc.), you can log in