Re: Perl Permissions on Tomcat

2007-10-26 Thread Li Ye Chen
new module in Java? -Original Message- Date: Sun Oct 14 18:29:57 EDT 2007 From: Mark Thomas [EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat To: Tomcat Users List users@tomcat.apache.org Li Ye Chen wrote: Script A (the problem script) continues to run after 2 minutes

Re: Perl Permissions on Tomcat

2007-10-14 Thread Mark Thomas
Li Ye Chen wrote: Script A (the problem script) continues to run after 2 minutes (with partial output some of the time). But script A ran under the command line (as opposed to the browser/Tomcat) is very fast -- under a second and gives full output. Script B runs under less than a second

Re: Perl Permissions on Tomcat

2007-10-10 Thread Li Ye Chen
Yes, if you mean enabling the file server/lib/servlets-cgi.jar... -Original Message- Date: Mon Oct 09 18:25:12 EDT 2000 From: Martin Gainty [EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat To: Tomcat Users List users@tomcat.apache.org I asked yesterday but didnt hear back

Re: Perl Permissions on Tomcat

2007-10-10 Thread Li Ye Chen
. -Original Message- Date: Tue Oct 09 16:54:50 EDT 2007 From: Christopher Schultz [EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat To: Tomcat Users List users@tomcat.apache.org -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Li, Li Ye Chen wrote: Hi, I'm trying to run a Perl script

Re: Perl Permissions on Tomcat

2007-10-10 Thread Mark Thomas
Li Ye Chen wrote: Apparently, it may also be a speed issue, since there was once when I ran script A and after a while, I stopped the transmission -- there was actually a partial output from the script. How long does script A take to run? Mark

Re: Perl Permissions on Tomcat

2007-10-09 Thread Li Ye Chen
2007 From: Mark Thomas [EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat To: Tomcat Users List users@tomcat.apache.org Li Ye Chen wrote: // Give all permission to servlets-cgi.jar grant codeBase file:${catalina.home}/server/lib/servlets-cgi.jar { permission

RE: Perl Permissions on Tomcat

2007-10-09 Thread Caldarale, Charles R
From: Li Ye Chen [mailto:[EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat I'm running Tomcat on Windows XP, and in my Configuration - Startup menu, the entry for the Arguments text box is start, with no other string You're looking in the wrong place. Look at the Java options

Re: Perl Permissions on Tomcat

2007-10-09 Thread Li Ye Chen
is going on here... Any help will be appreciated! -Original Message- Date: Mon Oct 08 12:52:23 EDT 2007 From: Mark Thomas [EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat To: Tomcat Users List users@tomcat.apache.org Li Ye Chen wrote: Will it pose a security risk if I disable

Re: Perl Permissions on Tomcat

2007-10-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Li, Li Ye Chen wrote: Hi, I'm trying to run a Perl script on Tomcat 5.5.8 -- I've managed to successfully run read-only Perl script, but the script I'm trying to run connects to the database and needs to write to the local hard drive. Whenever I

Re: Perl Permissions on Tomcat

2007-10-09 Thread Martin Gainty
I asked yesterday but didnt hear back..Are you implementing via CGIServlet? M-- - Original Message - From: Li Ye Chen [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, October 09, 2007 4:34 PM Subject: Re: Perl Permissions on Tomcat Okay, I did some

Perl Permissions on Tomcat

2007-10-08 Thread Li Ye Chen
Hi, I'm trying to run a Perl script on Tomcat 5.5.8 -- I've managed to successfully run read-only Perl script, but the script I'm trying to run connects to the database and needs to write to the local hard drive. Whenever I try to execute the script, it creates a Perl.exe thread on my

Re: Perl Permissions on Tomcat

2007-10-08 Thread Mark Thomas
Li Ye Chen wrote: // Give all permission to servlets-cgi.jar grant codeBase file:${catalina.home}/server/lib/servlets-cgi.jar { permission java.security.AllPermission; }; Are you running with a security manger? If so, try running without and get things working that way first. Then we

Re: Perl Permissions on Tomcat

2007-10-08 Thread Li Ye Chen
Will it pose a security risk if I disable the Security Manager? I am running an enterprise firewall on the server... -Original Message- Date: Mon Oct 08 12:03:37 EDT 2007 From: Mark Thomas [EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat To: Tomcat Users List users

Re: Perl Permissions on Tomcat

2007-10-08 Thread Mark Thomas
Li Ye Chen wrote: Will it pose a security risk if I disable the Security Manager? I am running an enterprise firewall on the server... That depends on your environment. But you have a separate machine for development and/or testing - right? Right now we need to figure out if it is the

Re: Perl Permissions on Tomcat

2007-10-08 Thread Li Ye Chen
Yes, it's on a separate machine... -Original Message- Date: Mon Oct 08 12:52:23 EDT 2007 From: Mark Thomas [EMAIL PROTECTED] Subject: Re: Perl Permissions on Tomcat To: Tomcat Users List users@tomcat.apache.org Li Ye Chen wrote: Will it pose a security risk if I disable