Re: deploying problem

2007-03-24 Thread Martin Gainty
Hi Dean- The war that netbeans creates is specific to the configuration parameters in netbeans project (most notably project.xml) Can you display or send us the catalina.out or stderr* or stdout* logs from $CATALINA_HOME/logs? Thanks, Martin --

Marking servlet [] as unavailable, again...

2007-03-24 Thread Simon Brooke
Yes, I've read through previous threads on this subject; I haven't found anything which helps me. Recently I've had a spate of unexplained 'Marking servlet [] as unavailable' issues on my development server. It is a development server, and so, of course, all the servlets on it are pretty much

Re: Tomcat mod_proxy_ajp and jk exceptions

2007-03-24 Thread c .
so would it make sense to assume that since SSL worked without any extra config changes when I added the AJP config that it should work without any changes when using mod_proxy_http? On 3/23/07, Filip Hanik - Dev Lists [EMAIL PROTECTED] wrote: AJP doesn't use SSL, never has, so I'm not sure

Configure ssl support on my tomcat instance number 2

2007-03-24 Thread Cartman
Hi, i install two tomcat intances on my machine; and i modified the server.xml file Connector port=8443 minProcessors=5 maxProcessors=75 enableLookups=true disableUploadTimeout=true acceptCount=100 debug=0 scheme=https secure=true

Re: Configure ssl support on my tomcat instance number 2

2007-03-24 Thread Mark Thomas
Cartman wrote: But when i try use http://localhost:8443 the browser don't show anything, why? Because you need to request https://localhost:8443 Mark - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,

Re: Configure ssl support on my tomcat instance number 2

2007-03-24 Thread Cartman
oops, sorry. Thanks On 3/24/07, Mark Thomas [EMAIL PROTECTED] wrote: Cartman wrote: But when i try use http://localhost:8443 the browser don't show anything, why? Because you need to request https://localhost:8443 Mark -

Re: deploying problem

2007-03-24 Thread Deano!!
21-Mar-07 4:20:42 PM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet Faces Servlet threw exception com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: Exception in JSP: /Page1.jsp:7 4: f:view 5: ui:page

Re: deploying problem

2007-03-24 Thread Rashmi Rubdi
Hi there, I think JSF questions will be appropriate here: http://forum.java.sun.com/forum.jspa?forumID=427 If you are trying to use Unified EL then you need Tomcat 6.0.x because it is built to JSP 2.1 which supports Unified EL. -Rashmi On 3/24/07, Deano!! [EMAIL PROTECTED] wrote: 21-Mar-07

Re: deploying problem

2007-03-24 Thread Deano!!
but netbeans uses tomcat 5.5 aswell? and it works there jsut not on another tomcat 5.5 -- View this message in context: http://www.nabble.com/deploying-problem-tf3433368.html#a9653538 Sent from the Tomcat - User mailing list archive at Nabble.com.

Apache 2.2 mod_jk Tomcat 5.5 Keeps running

2007-03-24 Thread Scott Cole
Hi I have set up an Apache webserver to connect to a Tomcat server to process a page and everything works except the Tomcat starts to run at 100 percent after processing the page. If I access the page directly thouugh the Tomcat server(before trying with Apache/mod_jk) the page is fetched and

How do I handle failure in contextInitialized()?

2007-03-24 Thread mers
Hi, I have a class that implements ServletContextListener. When I receive a contextInitialized() call, I need to load some data from a database and add it to the application scope for subsequent use by various servlets and pages. There is a chance that the database request made in

Re: deploying problem

2007-03-24 Thread Rashmi Rubdi
I have manually (independent of an IDE) configured Tomcat 6.0.x , JSF 1.2 and have tried a simple JSF example and the example works on Tomcat 6.0.x. I haven't tested on Tomcat 5.5, but I'm sure if everything is configured correctly things should work. Check your log files for additional

Re: deploying problem

2007-03-24 Thread Deano!!
yeah, well how its all set up is i produce the projects on netbeans 5.5 on my desktop, cause it is quite a demanding ide, and then i wanna run them on my home server which is much less powerful. if i say gave u a link to download my .war could u see it if works on yours? the first page is a long

Re: deploying problem

2007-03-24 Thread Rashmi Rubdi
Sure, post the link to your WAR file, we will take a look at it. I'm heading out so it might take a while for me to respond. -Rashmi On 3/24/07, Deano!! [EMAIL PROTECTED] wrote: if i say gave u a link to download my .war could u see it if works on yours? the first page is a long on page any1s

Re: deploying problem

2007-03-24 Thread Deano!!
http://deansserver.serveftp/InterfacesHCI.war but when u get prompt make sure u change the extension from zip to war, though i have actually uploaded the .war file windows seems to think its a .zip file. thanks Deano!! Rashmi Rubdi-2 wrote: Sure, post the link to your WAR file, we will

Re: deploying problem

2007-03-24 Thread Rashmi Rubdi
I also have Tomcat 5.5 in addition to 6.0, I dropped your WAR file to: C:\dev\apache-tomcat-5.5.12\webapps\InterfacesHCI.war Tomcat unpacked the war, and I was able to successfully access your app on http://localhost:9090/InterfacesHCI/ It shows a login page with yellow text boxes. Then I

Re: deploying problem

2007-03-24 Thread Rashmi Rubdi
Although the JSF app worked on Tomcat 5.5, I saw some errors relating to JDBC connection on the console: Cannot load JDBC driver class 'org.apache.derby.jdbc.ClientDriver' java.lang.ClassNotFoundException: org.apache.derby.jdbc.ClientDriver at

Re: Tomcat mod_proxy_ajp and jk exceptions

2007-03-24 Thread Filip Hanik - Dev Lists
c. wrote: so would it make sense to assume that since SSL worked without any extra config changes when I added the AJP config that it should work without any changes when using mod_proxy_http? correct, the info I gave you is for when you want SSL between apache and tomcat, you are obviously

Re: Configure ssl support on my tomcat instance number 2

2007-03-24 Thread Filip Hanik - Dev Lists
try to specify a full path for keystoreFile, not a relative one. my guess is that it is trying to read TOMCAT_HOME/bin/ssl/.keystore Filip Cartman wrote: Hi, i install two tomcat intances on my machine; and i modified the server.xml file Connector port=8443 minProcessors=5

Re: How do I handle failure in contextInitialized()?

2007-03-24 Thread Mikolaj Rydzewski
mers wrote: There is a chance that the database request made in contextInitialized() either fails to connect to the database or does not find the relevant data. If that's the case, I'd like the context to not load, preferably gracefully, but ungracefully if need be. If you throw an exception

Re: Marking servlet [] as unavailable, again...

2007-03-24 Thread Martin Gainty
Simon- something is happening to interfere with the successful completion of init() method of your Servlet such as cannot find classes such as 'uk.co.weft.exceptionhandler.BugzillaExceptionHandler' or one of the init-param in web.xml could be incorrectly spelled or not there put in log.debug or

where is \common\endorsed in Tomcat 6.0? build.xml error

2007-03-24 Thread Anil Philip
Hello, Where is \common\endorsed in Tomcat 6.0? I am using Tomcat 6.0 on Windows XP. In the Application Guide http://tomcat.apache.org/tomcat-6.0-doc/appdev/processes.html There is a build.xml file http://tomcat.apache.org/tomcat-6.0-doc/appdev/build.xml.txt However, I get C:\Documents and

A newbie question

2007-03-24 Thread S
Hi, I am very new to Tomcat, and something I don't understand why is not working. After I installed Tomcat, I can access a webpage locally at this address: http://localhost:8080/ I configured my reouter for NAT and I have port 8080 forwarded to my desktop in my LAN and when I access http://my

Re: A newbie question

2007-03-24 Thread Filip Hanik - Dev Lists
Most likely your router is blocking port 8080, or not forwarding it. to change tomcat to run on port 80 TOMCAT_HOME/conf/server.xml, just search for 8080 Filip S wrote: Hi, I am very new to Tomcat, and something I don't understand why is not working. After I installed Tomcat, I can access a

Applet not initiated

2007-03-24 Thread Tomcat
Hello When I am trying to open a very simple applet on my browser it returns applet not initiated or failed to load applet. class file is located in tomcat WEB_INF/classes and I am calling it from ROOT directory and through index.html file. thanks for help Adam