As default Config during WSO IDentity Server (WSO2 IS). we can access to admin by the https request with the port 9443 with the below link:
https://localhost:9443/carbon/
But as mentioned on the below link.we can access through Http request with port 9763. But when we access with the http request, It will redirect automatically to https.
https://docs.wso2.com/display/IS500/Default+Ports+of+WSO2+Products
I also tried to find and see a confit relating to http and https in IS_HOME/responsitory/conf/axis2.xml.
<transportReceiver name="https"
class="org.wso2.carbon.core.transports.http.HttpsTransportListener">
<parameter name="port">9443</parameter>
</transportReceiver>
<transportReceiver name="http"
class="org.wso2.carbon.core.transports.http.HttpTransportListener">
<parameter name="port">9763</parameter>
</transportReceiver>
I tried to comment a config relating to https and build again but the result is not good when I had exception here.
I want to ask how to config in WSO2 IS to use HTTP as default to access instead of HTTPS as the initial config.
I would be happy if y can support me in this case. Thanks.