You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Trevor Nielsen <tn...@wedgetail.com> on 2002/02/12 02:39:22 UTC

Tomcat 4 SSL Connector

Hi,

I am currently trying to establish if I can specify
my own security provider to be used by Tomcat 4.0.1
instead of the one packaged.  I'm led to believe it
may be possible (or may in the future be possible) by
the server.xml file.  When you set up an SSL Connector,
you have to specify the Factory classname as pointing
to the tomcat SSLServerSocketFactory ie.


<Connector className="org.apache.catalina.connector.http.HttpConnector"
           port="8443" minProcessors="5" maxProcessors="75"
           enableLookups="true"
           acceptCount="10" debug="0" scheme="https" secure="true">
    <Factory className="org.apache.catalina.net.SSLServerSocketFactory"
             clientAuth="false" protocol="TLS"/>
</Connector>


That being the case, should I then be able to substitute
SSL implementations by instead doing the following :-


    <Factory className="com.dstc.security.ssl.SSLServerSocketFactory"
             clientAuth="false" protocol="TLS"/>


Thanks.


-- 
Trevor Nielsen
Software Engineer
Wedgetail Communications Pty Ltd.
Level 12 S Block
Queensland University of Technology (Gardens Point)
Brisbane QLD Australia, 4000
email:  tnielsen@wedgetail.com
phone:  3864 5121

--
To unsubscribe:   <ma...@jakarta.apache.org>
For additional commands: <ma...@jakarta.apache.org>
Troubles with the list: <ma...@jakarta.apache.org>


Internationalization

Posted by Christopher Cheng <ch...@chengsfamily.net>.
I am struggling with double byte characters in  JSP

On the struts jsp form, I am putting 

<%@ page contentType="text/html; charset=UTF-8" %> on the top <META
http-equiv="Content-Type" content="text/html; charset=UTF-8"> in the
head

I got some question marks when I print the characters in the console by 
System.out.println(request.getParameter("parameter1")
Or save those character to file

The same thing happens with the data retrieved from MySQL displayed on
JSP.

Anybody helps?


--
To unsubscribe:   <ma...@jakarta.apache.org>
For additional commands: <ma...@jakarta.apache.org>
Troubles with the list: <ma...@jakarta.apache.org>