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
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
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
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:
"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-
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
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
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
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
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
10 matches
Mail list logo