[java ee programming] Re: Find the J2ee web hosting site........

2010-03-17 Thread redsword
try eatj.com The free version stays up for 6 hours -- then they kill in the free version. I jave tried my app to test and it works like a charm for MySql, tomcat (5 or 6). On Mar 16, 3:19 am, Sergey Korochkin wrote: > Hi. > > Google provides some Java hosting but with there own datastore. You >

[java ee programming] Re: javac??

2010-02-25 Thread redsword
1) java.exe definately installed 2) I do not think you installed JDK, but only the JRE is installed . Thus "java" is there but not "javac" Or other posibilty is that javac is not in "C:\Program Files\Java \jdk1.6.0_02\bin " Verify by looking at C:\Program Files\Java\jdk1.6.0_02\bin using window

[java ee programming] Re: Lost the database connection after 10 hours in hibernate

2010-02-20 Thread redsword
Sounds to me the site is "leaking" connection, i.e. connection is being established and never released. So you have to check the code where the connection is being is established. Since you are using hibernate this means most like you are not resuning session and/or calling "session.close()" when