RE: SSL client authentication with IE 6.0

2003-06-06 Thread Lin, Zhongwu
Duma, >>the list of certificates is empty! This means that you don't have client certificate in your client machine. -Original Message- From: Duma Rolando [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 9:31 AM To: Tomcat Mailing List Subject: SSL client authentication with IE 6.

RE: file renaming using Multipart class.

2003-03-10 Thread Lin, Zhongwu
venkat, here is the one way to use it: MultipartRequest multi = new MultipartRequest(request, dirName, 100*1024*1024, "ISO-8859-1", new DefaultFileRenamePolicy()); Enumeration files = multi.getFileNames(); while (files.hasMoreElements()) { String name = (

RE: Error with Oracle Jdbc

2002-07-02 Thread Lin, Zhongwu
try DriverManager.getConnection("jdbc:oracle:thin:@HOST:PORT:TOMCATDB","spifdogg ","spifdogg"); instead of DriverManager.getConnection("jdbc:oracle:localhost:@TOMCATDB","spifdogg","sp ifdogg"); It should work. -Original Message- From: William Gustave [mailto:[EMAIL PROTECTED]] Sent

RE: ERROR 500

2002-04-19 Thread Lin, Zhongwu
It seems like your DatabaseServlet.class is not in your Web-inf/classese. zlin > -Original Message- > From: Halil AKINCI [SMTP:[EMAIL PROTECTED]] > Sent: Friday, April 19, 2002 5:56 AM > To: Jakarta TomCat > Subject: ERROR 500 > > Hi, > > I'm using a HTML form t

Trouble connecting Apache 1.3 & Tomcat 4 w/ mod_webApp for window NT

2001-11-15 Thread Lin, Zhongwu
I can't make Apache 1.3 & Tomcat 4 w/ mod_webApp to work. This is what I do(follow install guide): 1) copy mod_webapp.so and libapr.dll to directory \modules 2)edit httpd.conf like this ServerName localhost LoadModule webapp_module modules/mod_webapp.so WebAppConnection conn warp loca

RE: Getting a Verisign certificate

2001-09-19 Thread Lin, Zhongwu
I believe you can get one from verisign. zlin > -Original Message- > From: Alex Colic [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, September 19, 2001 9:04 AM > To: Tomcat-User > Subject: Re: Getting a Verisign certificate > > Hi, > > we need an official certificate. Any idea wher

RE: Call EJB in OC4J from Tomcat

2001-09-10 Thread Lin, Zhongwu
anks for your help. > > Cheers > > Ghis > > > -Message d'origine- > De : Lin, Zhongwu [mailto:[EMAIL PROTECTED]] > Envoyé : 10 septembre, 2001 16:53 > À : '[EMAIL PROTECTED]' > Objet : RE: Call EJB in OC4J from Tomcat > > > Look

RE: Call EJB in OC4J from Tomcat

2001-09-10 Thread Lin, Zhongwu
assCastException... > oHome = (U2007ML_UsersHome) oContext.lookup("U2007ML_UsersRemote"); > > ... > } > catch(Exception ex) > { > ex.printStackTrace(); > } > > Thanks for your help! > > > -Message d'origine- > De : Lin, Zhongwu [mailto:[E

RE: Call EJB in OC4J from Tomcat

2001-09-10 Thread Lin, Zhongwu
Can you show us how you make call to ejb? otherwise on one can help you zlin > -Original Message- > From: Ghislain Gadbois [SMTP:[EMAIL PROTECTED]] > Sent: Monday, September 10, 2001 3:25 PM > To: Tomcat-User list (E-mail) > Subject: Call EJB in OC4J from Tomcat > > Hi, > > I ha

RE: tomcat as an NT service.

2001-08-30 Thread Lin, Zhongwu
I can't find this NT-Service-howto.html in Tomcat 3.x or Tomcat 4.x? regards > -Original Message- > From: Nirmal Rajarathnam [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, August 30, 2001 1:33 PM > To: [EMAIL PROTECTED] > Subject: RE: tomcat as an NT service. > > In your install dir

RE: JDBC connection failing

2001-08-28 Thread Lin, Zhongwu
the simple way to make sure it is Connection problem is to 1) insert an output before and after jdbc call. 2) try to see how many connections you make and compare number to the max connection setting in Oracle DB Hope this helps Zlin > -Original Message- > From: [EMAIL PROTECTED] [SMTP

RE: tomcat 4 datasource casting

2001-08-21 Thread Lin, Zhongwu
Craig, This bring up an interesting question: In installation guide for soap 2.2, it requires that mail.jar, activation.jar etc be in CLASSPATH for Tomcat 3.2. But for Tomcat 4.0 do we put them in $CATALINA_HOME/common/lib or include these jar files in the CLASSPATH. I don't see docume

soap 2.2

2001-08-20 Thread Lin, Zhongwu
Question: Should soap.jar reside in d:\soap\soap-2_2\webapps\soap\WEb_INF\lib or d:\soap\soap-2_2\lib Here is the story: I have installed tomcat 4.0 (standalone) and jdk 1.4 and I am trying to get my soap to work I have done the following: 1) I download soap 2.2 ( soap-bin-2.2.zi

RE: Does the servlet security model work with the J2EE Blueprint MVC?

2001-08-15 Thread Lin, Zhongwu
m). You can take advantage of a related > specification requirement, and put those JSP pages inside the /WEB-INF > directory. This works because the container will refuse to serve anything > under /WEB-INF directly to the user, but RequestDispatcher.forward() can > still be used to display them

filter mapping

2001-08-14 Thread Lin, Zhongwu
In tomcat 4.0, how do I map filter ( "my filter" ) to servlet "my simple servlet" ? my filter my simple servlet myservlet my simple servlet com.controller.myservlet regards zlin