How to configure SSL with IPlanet Server 6.1 SP4

Hi, I am trying to configure the Sun Java System Server to work as an reverse proxy server. Can anyone help me with the steps to configure SSL. port. Is it supported? The application is deployed on Websphere 6.1 and IPlanet Server ver. 6.1 SP4. is like a proxy server.

I added Listener port with Security=on but its not working

Thanks in advance

Joe

null

[387 byte] By [jomon_manimalaa] at [2007-11-27 10:22:14]
# 1

Dear Joe,

Yes, iplanetserver6.1sp4 supports SSL. First you got to install the certificate and bind that with your listener to enable SSL.

~Prabu

b00m3ra at 2007-7-28 17:14:50 > top of Java-index,Web & Directory Servers,Web Servers...
# 2

As b00m3r has said, first you must install the certificate, then you must add Listener port with Security=on and assign it your cert. Your server run now in ssl mode.

For proxy server you must install the passthrough plugin and configure the following files, something like this:

-- magnus.conf -

Init fn="load-modules" shlib="/opt/SUNWwbsvr/plugins/passthrough/libpassthrough.so"

obj.conf -

<Object name="default">

[...]

NameTrans fn="assign-name" from="/myAPP(|/*)" name="proxyAPP"

[...]

</Object>

<Object name="proxyAPP">

service fn="service-passthrough" servers="http://websphere.server.tld"

</Object>

dptosoportea at 2007-7-28 17:14:50 > top of Java-index,Web & Directory Servers,Web Servers...