There are 2 ways you can do this

1.> If you dont want any https at all, then theres a global property 'port.https.enabled' in url.properties file. Set it to 'N'.

2.> If you want to turn individual requests from https to http, you will need to change the https attribute value to false in the request map of your controller -

 <request-map uri="view">
        <security https="true" auth="false"/>
        <response name="success" type="view" value="main"/>
        <response name="error" type="view" value="error"/>
    </request-map>

<security https="true" auth="false"/> will become <security https="false" auth="false"/>

Hope this helps.

Amit Shinde
Amicon Technologies Pvt. Ltd., Mumbai, India.



Milind Pol wrote:
Hello,

 

Can I change the protocol for all the traffic to http from https? If yes,
how do I go about doing it?

 

Regards,

Milind

  

Reply via email to