Re: Where are the UNIX-type scripts?

2005-06-12 Thread kamal r
Its not the list bouncing your mail as I did get your
mail as well as you would have. just ignore it and
dont resend
--- Greg Scott [EMAIL PROTECTED] wrote:

 Let's try this again.  I don't know why the list
 bounced my reply...
 
 - Greg Scott 
 
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] 
 Sent: Sunday, June 12, 2005 3:35 AM
 To: Greg Scott
 Subject: failure delivery
 
 Unable to deliver message to the following
 address(es) Tomcat Users
 List tomcat-user@jakarta.apache.org.
 
 Remote host said: 554 delivery error: This user
 doesn't have an account
 
 --- Original message follows.
 Here are the savesets I used and I have all the
 scripts:
 
   jakarta-tomcat-5.5.9.tar.gz
   jakarta-tomcat-5.5.9-compat.tar.gz
 
 These files I grabbed were a binary distribution -
 already compiled and
 built.  I'll bet the difference is, you built yours
 from source.  Here
 are the files I have.  I set this up on a Linux FC3
 host:
 
 [EMAIL PROTECTED] bin]# cd $CATALINA_HOME/bin
 [EMAIL PROTECTED] bin]# ls -la
 total 1072
 drwxr-xr-x   3 root root   4096 May 17 17:56 .
 drwxr-xr-x  11 root root   4096 May 17 17:56 ..
 -rw-r--r--   1 root root  22547 Mar 26 13:22
 bootstrap.jar
 -rw-r--r--   1 root root   7684 Mar 26 13:22
 catalina.bat
 -rwxr-xr-x   1 root root  10921 Mar 26 13:22
 catalina.sh
 -rw-r--r--   1 root root   9386 Mar 26 13:22
 commons-daemon.jar
 -rw-r--r--   1 root root  26202 Mar 26 13:22
 commons-logging-api.jar
 -rw-r--r--   1 root root511 Mar 26 13:22
 cpappend.bat
 -rw-r--r--   1 root root   1284 Mar 26 13:22
 digest.bat
 -rwxr-xr-x   1 root root848 Mar 26 13:22
 digest.sh
 -rw-r--r--   1 root root 408051 Mar 26 13:22 jmx.jar
 -rwxr-xr-x   1 root root  76244 May 17 17:33 jsvc
 drwxr-xr-x   5 root root   4096 May 17 17:33
 jsvc-src
 -rw-r--r--   1 root root  73008 Mar 26 13:22
 jsvc.tar.gz
 -rw-r--r--   1 root root   3956 Mar 26 13:22
 service.bat
 -rw-r--r--   1 root root   2013 Mar 26 13:22
 setclasspath.bat
 -rwxr-xr-x   1 root root   2788 Mar 26 13:22
 setclasspath.sh
 -rw-r--r--   1 root root   1273 Mar 26 13:22
 shutdown.bat
 -rwxr-xr-x   1 root root787 Mar 26 13:22
 shutdown.sh
 -rw-r--r--   1 root root   1274 Mar 26 13:22
 startup.bat
 -rwxr-xr-x   1 root root   1141 Mar 26 13:22
 startup.sh
 -rw-r--r--   1 root root 102400 Mar 26 13:23
 tomcat5.exe
 -rw-r--r--   1 root root 131072 Mar 26 13:23
 tomcat5w.exe
 -rw-r--r--   1 root root  12104 Mar 26 13:22
 tomcat-juli.jar
 -rw-r--r--   1 root root   2235 Mar 26 13:22
 tool-wrapper.bat
 -rwxr-xr-x   1 root root   2549 Mar 26 13:22
 tool-wrapper.sh
 -rw-r--r--   1 root root   1280 Mar 26 13:22
 version.bat
 -rw-r--r--   1 root root790 Mar 26 13:22
 version.sh
 [EMAIL PROTECTED] bin]# 
 
 - Greg Scott
  
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Saturday, June 11, 2005 4:23 PM
 To: Tomcat Users List
 Subject: Where are the UNIX-type scripts?
 
 I recently downloaded the latest
 jakarta-tomcat-5.5.9.tar.gz 
 installation files and set them up, but I can not
 find the 
 startup.sh, catalina.sh, ... file.
 
  
 

-
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:
 [EMAIL PROTECTED]
 
 


Send instant messages to your online friends http://uk.messenger.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



tomcat 5.0 docs(no url configured for link)

2005-06-12 Thread kamal r
At this page on the jakarta site
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/server.html
on the left the General Intro link has no url
configured.
This is the url the link points to
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/connector.html
could somebody pass it on to the site admins.

regards
kamal

Send instant messages to your online friends http://uk.messenger.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



high cpu usage during xslt processing (resending)

2005-06-09 Thread kamal r
(Resending as earlier mail had bounced)
Recently we have migrated our application from
jrun3.1 to tomcat 4.1.31 running on windows 2000
advanced server. It uses saxon 6.5.3 for xslt
processing and the cpu usage is almost 100% even for
15 concurrent users. So in order to do a simple load
test on the xslt part alone, I wrote a test jsp and
the cpu usage is almost 100% for 15 concurrent users
for a xsl file 106kb in size.
XSLTTest.jsp
TransformerFactory factory =
TransformerFactory.newInstance();
StreamSource source = new StreamSource(new
FileInputStream(test.xsl));
Templates pss = factory.newTemplates(source);
Transformer transformer = pss.newTransformer();
ByteArrayInputStream temp = new
ByteArrayInputStream(xml/xml.getBytes());
source = new StreamSource(temp);
StreamResult result = new
StreamResult(response.getOutputStream());
transformer.transform(source, result);
  
  The cpu usage is at 60% for the same jsp page on the
 jrun 3.1 server. Can anybody provide me with pointers
to reduce cpu usage or has anyone who has faced a
similar scenario.
  Please let me know if I need to provide more inputs
as this is my first mail to the list.

Thanks
Kamal

Send instant messages to your online friends http://uk.messenger.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



high cpu usage during xslt processing

2005-06-08 Thread kamal r
   Recently we have migrated our application from
jrun3.1 to tomcat 4.1.31 running on windows 2000
advanced server. It uses saxon 6.5.3 for xslt
processing and the cpu usage is almost 100% even for
15 concurrent users. So in order to do a simple load
test on the xslt part alone, I wrote a test jsp and
the cpu usage is almost 100% for 15 concurrent users
for a xsl file 106kb in size.
XSLTTest.jsp
TransformerFactory factory =
TransformerFactory.newInstance();
StreamSource source = new StreamSource(new
FileInputStream(test.xsl));
Templates pss = factory.newTemplates(source);
Transformer transformer = pss.newTransformer();
ByteArrayInputStream temp = new
ByteArrayInputStream(xml/xml.getBytes());
source = new StreamSource(temp);
StreamResult result = new
StreamResult(response.getOutputStream());
transformer.transform(source, result);
  
  The cpu usage is at 60% for the same jsp page on the
 jrun 3.1 server. Can anybody provide me with pointers
to reduce cpu usage or has anyone who has faced a
similar scenario.
  Please let me know if I need to provide more inputs
as this is my first mail to the list.

Thanks
Kamal

Send instant messages to your online friends http://uk.messenger.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



high cpu usage during xslt processing (resending)

2005-06-08 Thread kamal r
(Resending as earlier mail had bounced)
Recently we have migrated our application from
jrun3.1 to tomcat 4.1.31 running on windows 2000
advanced server. It uses saxon 6.5.3 for xslt
processing and the cpu usage is almost 100% even for
15 concurrent users. So in order to do a simple load
test on the xslt part alone, I wrote a test jsp and
the cpu usage is almost 100% for 15 concurrent users
for a xsl file 106kb in size.
XSLTTest.jsp
TransformerFactory factory =
TransformerFactory.newInstance();
StreamSource source = new StreamSource(new
FileInputStream(test.xsl));
Templates pss = factory.newTemplates(source);
Transformer transformer = pss.newTransformer();
ByteArrayInputStream temp = new
ByteArrayInputStream(xml/xml.getBytes());
source = new StreamSource(temp);
StreamResult result = new
StreamResult(response.getOutputStream());
transformer.transform(source, result);
  
  The cpu usage is at 60% for the same jsp page on the
 jrun 3.1 server. Can anybody provide me with pointers
to reduce cpu usage or has anyone who has faced a
similar scenario.
  Please let me know if I need to provide more inputs
as this is my first mail to the list.

Thanks
Kamal

Send instant messages to your online friends http://uk.messenger.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]