Re: WAR file deployment question

2014-09-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 James, On 9/15/14 8:11 PM, James H. H. Lampert wrote: We have a rather large WAR file. 89,925,956 bytes. And we have cable internet. With its usual extremely asymmetrical bandwidth: a download pipe the size of an air conditioning duct, and an

Re: WAR file deployment question

2014-09-19 Thread James H. H. Lampert
Thanks, Messrs Janner and Schultz. I feared that was the case, but it never hurts to ask. The thing is, if I have it sitting someplace off-site, and Manager could snag it from there directly, then we'd only have to pass it through the insulin needle upload pipe of our cable internet when we

Re: WAR file deployment question

2014-09-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 James, On 9/19/14 4:50 PM, James H. H. Lampert wrote: Thanks, Messrs Janner and Schultz. I feared that was the case, but it never hurts to ask. The thing is, if I have it sitting someplace off-site, and Manager could snag it from there

RE: WAR file deployment question

2014-09-17 Thread Jeffrey Janner
-Original Message- From: James H. H. Lampert [mailto:jam...@touchtonecorp.com] Sent: Monday, September 15, 2014 7:11 PM To: Tomcat Users List Subject: WAR file deployment question We have a rather large WAR file. 89,925,956 bytes. And we have cable internet. With its usual

Re: WAR file deployment question

2014-09-17 Thread André Warnier
Jeffrey Janner wrote: -Original Message- From: James H. H. Lampert [mailto:jam...@touchtonecorp.com] Sent: Monday, September 15, 2014 7:11 PM To: Tomcat Users List Subject: WAR file deployment question We have a rather large WAR file. 89,925,956 bytes. And we have cable internet

Re: WAR file deployment question

2014-09-16 Thread 侯树成
try manager, located in the webapps/manager. You need to edit your tomcat-users.xml, After that you can deploy your app via manager. 2014-09-16 8:11 GMT+08:00 James H. H. Lampert jam...@touchtonecorp.com: We have a rather large WAR file. 89,925,956 bytes. And we have cable internet. With its

WAR file deployment question

2014-09-15 Thread James H. H. Lampert
We have a rather large WAR file. 89,925,956 bytes. And we have cable internet. With its usual extremely asymmetrical bandwidth: a download pipe the size of an air conditioning duct, and an upload pipe the size of an insulin needle. Squirting this huge WAR file through such a narrow pipe takes

war file deployment question

2006-01-06 Thread Jignesh Shah
Hi, I have a war file that works fine under JRun and Jetty. Now when I deploy it under $CATALINA_HOME/webapps directory, the war file creates its usual tree under webapps. Now this is what it looks like after deployment: /webapps /myapplication lots of jsps css (where I have css and xsl

war file deployment question

2006-01-06 Thread Jignesh Shah
Hi, I have a war file that works fine under JRun and Jetty. Now when I deploy it under $CATALINA_HOME/webapps directory, the war file creates its usual tree under webapps. Now this is what it looks like after deployment: /webapps /myapplication lots of jsps css (where I have css and xsl

war file deployment question

2006-01-06 Thread Jignesh Shah
Hi, I have a war file that works fine under JRun and Jetty. Now when I deploy it under $CATALINA_HOME/webapps directory, the war file creates its usual tree under webapps. Now this is what it looks like after deployment: /webapps /myapplication lots of jsps css (where I have css and xsl

Re: war file deployment question

2006-01-06 Thread Charl Gerber
Question being? --- Jignesh Shah [EMAIL PROTECTED] wrote: Hi, I have a war file that works fine under JRun and Jetty. Now when I deploy it under $CATALINA_HOME/webapps directory, the war file creates its usual tree under webapps. Now this is what it looks like after deployment:

Re: war file deployment question

2006-01-06 Thread David Smith
How are you accessing the css/xsl files? Sounds like you are attempting to open then with standard Java IO calls and relative paths. If that's the case, you might want to consider looking at javax.servlet.ServletContext#getResource() or javax.servlet.ServletContext#getResourceAsStream(). These

Re: war file deployment question

2006-01-06 Thread Jignesh Shah
Yes David, I do use relative path in my jsp's. What wonders me is I have lots of images in the images directory and I use them through relative path also and they work fine. Its only when it comes to css/xsl files that it cannot access. This stuff again works fine with other webserver, so I am

RE: war file deployment question

2006-01-06 Thread Roger Alix-Gaudreau
[mailto:[EMAIL PROTECTED] Sent: Friday, January 06, 2006 9:48 AM To: Tomcat Users List Subject: Re: war file deployment question Yes David, I do use relative path in my jsp's. What wonders me is I have lots of images in the images directory and I use them through relative path also and they work fine