I am currently setting up a dockerized WSO Api Manager. We have got a wildcard certificates for our domain. I successfully transformed it into a java keystore and replaced the t
Inside the axis2\axis2.xml
file on the conf
folder you have to change the https transportSender
to have the following line:
<parameter name="HostnameVerifier">AllowAll</parameter>
Here you can read a little more about that
In the api-manager.xml
file , change all references of localhost
to match your domain name , restart , and it should be good.
Setting
<parameter name="HostnameVerifier">AllowAll</parameter>
is a security risk , Hostname Verification is there for a reason.