Servlet navigation

2008-06-12 Thread James Rome
I am doing a project for a class of HS teachers in July, to teach them the wonders of Java and NetBeans. I designed a set of servlets to let them manage student grades. I am having them design the basic HTML in NVU, and put it into the try blocks of the NB-generated processRequest servlets, and the

RE: Apache Portable Runtime

2007-07-27 Thread James Rome
Lakshmi said: You have to compile libtcnative as well. In addition to the documentation mentioned by Rainer, also look in the archives for the threads "Tomcat native library Not found in Solaris 9" and "Tomcat 5.5, IPv6, APR, HTTP and HTTPS" Lakshmi --- I got the APR compiled and run

Apache Portable Runtime

2007-07-27 Thread James Rome
When Tomcat starts, I get: Jul 27, 2007 10:06:11 AM org.apache.catalina.core.AprLifecycleListener lifecycleEvent INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib/jvm/java-1.5.0-sun-1.5.0_12/jre/lib/i3

Re: How to redirect to a jsp

2006-09-12 Thread James Rome
The easiest way would be to make a filter that decides what to do. It would intercept every web request and can then forward them as appropriate. Jim - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail:

RE: socket read errors

2006-02-03 Thread James Rome
"Are you using Solaris? Is it possible that your MTU at the OS level wasn't set to a large number?" Well, It is a Solaris server talking to my Linux server. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Re: socket read errors

2006-02-03 Thread James Rome
I found out what is causing this. My read is done with the following code: BufferedReader rdr = new BufferedReader( new InputStreamReader(input)); String rdstr; while ((rdstr = rdr.readLine()) != null) { sb.append(rdstr + "\n"); } I always get the full presented certificate, but

socket read errors

2006-02-03 Thread James Rome
My servlet that verifies presented client certificates is getting socket read timeout errors: INFO: : i/o exception: java.net.SocketTimeoutException: Read timed out Feb 2, 2006 7:24:14 PM org.apache.catalina.core.StandardWrapperValve invoke WARNING: Servlet.service() for servlet P

Re: SSL InvalidKeystore Format?

2005-12-03 Thread James Rome
The accepted CAs are in /jre/lib/security/cacerts which you manage with keytool. This only comes into play if you require a client certificate. Then the user's browser only presents certificates from your CA list. Jim - To unsubs

SSL ErrorOCSP error

2005-10-17 Thread James Rome
return (null); } } // End of validate // Check the existence of the client Principal in our database Principal subject = certs[0].getSubjectDN(); return (subject); } I print out the PKIX parameters, and my CA certufuc

SSL Error : Please HELP

2005-10-17 Thread James Rome
I tried putting start -Djavax.net.debug=ssl:handshake in the Windows 5.5 GUI startup tab under arguments and Tomcat will not start How does one get this to work? Jim - You can pass the option '-Djavax.net.debug=ssl:handshake' to the Tomcat startup, (either set JAVA_OPTS to it if you