I need to restrict my published REST service to HTPPS-only urls (the users should not be able to use HTTP urls)

I need to restrict my published REST service to HTPPS-only urls (the users should not be able to use HTTP urls)

book

Article ID: KB0082913

calendar_today

Updated On:

Products Versions
TIBCO Data Virtualization 7.0.0 and higher

Description

Access to the published REST service can be restricted to HTPPS-only URL's by setting the following two configuration parameters in the published service:

      Enable SSL/TLS = true
      Require SSL/TLS = true

After the settings have been configured, the response from the TIBCO Data Virtualization server will be as follows.

https://localhost:9442/json/TechSupp/Any_to_Any_1  ==> accessible
http://localhost:9440/json/TechSupp/Any_to_Any_1    ==> inaccessible (a message will be displayed, stating that only HTTPS urls are permitted)

Issue/Introduction

I need to restrict my published REST service to HTPPS-only urls (the users should not be able to use HTTP urls)