cancel
Showing results for 
Search instead for 
Did you mean: 

HTTPS for EP

Former Member
0 Kudos

Hi,

Can someone tell me how to disable HTTP port at EP & force users to use HTTPS port?

About HTTPS, which is the simplest way to implement this? do I have a CA server to support SSL certificate? Can I use a windows CA server for this? ...

Thanks,

Toan Do

Accepted Solutions (1)

Accepted Solutions (1)

desiree_matas
Contributor
0 Kudos

Hi Toan Do

As far as I know the only way to disable the HTTP while keeping HTTPS is to configure an invalid value for the http port.

But you can disable http access on a per application basis. This way when a user tries to access an application via http, he will be redirected automatically to the https port, so again no http access will be possible.

To do that, you need to add an entry to the web.xml file of the application you want to secure. Por the portal it will be located in:

../server/services/servlet_jsp/work/jspTemp/

where UME_app_alias is the http alias through which you access the UME application.

You need to be careful when making these changes as the security constraint has a specific place in the descriptor, check which is it in the dtd.

I hope this info is useful.

Regards,

Désiré

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks.

It's done.