Re: catalina.policy to avoid "no object DCH for MIME..."

2003-11-24 Thread Jun Inamori
d Imaging API with SecurityManager, and so I'll also list the required permission for it. I'll work on it in the next weekend. Any suggestions are welcome to me. Best regards, -- Happy Java programming! Jun Inamori OOP-Reserch

catalina.policy to avoid "no object DCH for MIME..."

2003-11-22 Thread Jun Inamori
odeBase "file:${catalina.home}/shared/lib/activation.jar" { // permission java.io.FilePermission "/usr/local/jakarta-tomcat-4.1.12-LE-jdk14/shared/lib/mail.jar","read"; //}; I think this will help many Tomcat users, but do no harm. Any suggestion/questions are w

Re: [ tomcat & apache2 ]

2003-08-22 Thread Jun Inamori
is is the mailing list for the Tomcat developers. What I can say here is... The good how-to is available at: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html Good luck. -- Happy Java programming! Jun Inamori OOP-Reserch Corporation E-mail: [EMAIL PROTECTED] URL:http://www.oop-re

Re: BUG? ClassLoader doesn't find files in WEB-INF/classes

2002-09-23 Thread Jun Inamori
Hi, > we have some configuration files that lies directly > under WEB-INF/classes > per ClassLoader.getResource. Please try: ClassLoader cl=Thread.currentThread().getContextClassLoader(); InputStream is=cl.getResourceAsStream("some.txt"); Happy Java programming! --- Jun

Re: Problem with Servlet and Graphics

2002-06-05 Thread Jun Inamori
please read: http://java.sun.com/products/java-media/2D/forDevelopers/java2dfaq.html#xvfb Happy Java programming! -- Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserch.com/ -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Wanted to forward this article on to the Tomcat folks but I can'tsubscribe in order to do it so...

2002-05-29 Thread Jun Inamori
ava programming! ----------- Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserch.com/ -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: email problem on tomcat

2002-05-01 Thread Jun Inamori
44, which means that we need not take care about their read permission in usual case. But, as for JavaMail 1.3 Early Access, this is not true. So, it may be worth checking it. In fact, I spent more than an hour for this problem :-( -- Happy Java programming! Jun Inamori OOP-Reserch E-mai

[PROPOSAL]DecodeInterceptor

2002-04-23 Thread Jun Inamori
" + charEncoding ); } // Global Default if( charEncoding==null ) { if( debug > 0 ) log( "Default encoding " + defaultEncoding ); if( defaultEncoding != null ) charEncoding=defaultEncoding; } What to you think of this? Best regar

Re: IllegalStateException

2002-01-28 Thread Jun Inamori
questDispatcher("/test.jsp"). forward(request,response); return; Best regards, -- Happy Java programming! Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserch.com/ -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: I have created a JSP page that drops tomcat: I think it's a JVM issue

2002-01-15 Thread Jun Inamori
To prevent this, we need to limit the initail thread stack trase to 2M, either by: (in case of bash) ulimit -s 2048 (in case of tcsh) limit stacksize 2048 Best regards, -- Happy Java programming! Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserc

Re: FW: Tomcat 3.3 Document Bug

2001-11-26 Thread Jun Inamori
ion file. These features are well described in: http://jakarta.apache.org/tomcat/tomcat-3.3-doc/serverxml.html As you pointed out, the new features should reflected also to other articles. From Osaka in Japan. Best regards, -- Happy Java programming! Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:

Re: Tomcat RPM polls

2001-09-20 Thread Jun Inamori
uff to be moved from > /var/tomcat/conf to : > >/etc/tomcat/conf (mimic Apache httpd server conf) >/etc/tomcat/ Yes. > 4) Do you want the webapp stuff moved to /var/www/webapps ? Yes. > 5) Do you want the log stuff moved to /var/log/tomcat ? Yes. Best regards, -- Hap

Re: Start up script

2001-09-18 Thread Jun Inamori
t so that it can be used also on ReHat. Best regards, -- Happy Java programming! Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserch.com/ rctomcat.sh

Start up script

2001-09-18 Thread Jun Inamori
e some simple one. I tested it with Tomcat 3.2.3 on Linux, and works well. Any questions and comments are welcome to me. Best regards, -- Happy Java programming! Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserch.com/ Shinsenri-Kitamachi 2-24-7 Toyonaka city Osaka

Re: URL Decoding for %XX%XX%XX

2001-06-24 Thread Jun Inamori
default encoding for the webapp ). That's cool. Now, you solved this issue. -- Happy Java programming! Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserch.com/

URL Decoding for %XX%XX%XX

2001-06-24 Thread Jun Inamori
the encoding of your file system. pathInfo=new String(pathInfo.getBytes("EUC-JP")); } catch(UnsupportedEncodingException ex){ } Any questions and comments are welcome to me. Best regards, -- Happy Java programming! Jun Inamori OOP-Reserch E-mail: [EMAIL PROTECTED] URL:http://www.oop-reserch.com/

Re: how to specify Tomcat policy

2001-03-14 Thread Jun Inamori
ng entities to your "tomcat.policy": grant codeBase "file:/export/home/foo/webapp/bar" { permission java.io.FilePermission "/export/home/foo/webapp/-", "read, write, delete, execute"; }; And "/export/home/foo/webapp/bar" is the "docBase" direct