Running WSO2 ESB 4.5.1, I have followed 1 and 2 to successfully invoke a Carbon admin service and to discover a list of such services and their WSDLs; however, the invocation is not successful if I use the concrete port number specified in the WSDLs.
In my environment (offset=20 in carbon.xml) the admin service WSDLs all specify HTTPS port 8263. This is the secure port for ESB proxies. Using this port, the first call to get a session and cookie (/services/AuthenticationAdmin) fails with (wso2carbon.log):
Caused by: java.lang.NullPointerException
at org.wso2.carbon.core.services.authentication.AuthenticationAdmin.getHttpSession(AuthenticationAdmin.java:345)
at org.wso2.carbon.core.services.authentication.AuthenticationAdmin.login(AuthenticationAdmin.java:63)
If I ignore the port specified by the WSDLs and instead use the Management Console secure port, 9463, then invocation succeeds.
I am able to access the admin service WSDLs via either HTTPS port, but always the returned WSDL document specifies that clients should use 8263. It's fuzzy to me still, but I believe that one listener port is for the Axis2 NIO listener that ESB uses (8263) and the other goes through the embedded Tomcat instance and servlet handler (9463).
Can anyone shed light on what is correct for the admin services in a WSO2 ESB product instance and how to correctly configure so that service contracts agree with the concrete port that actually works for these services?
Thanks for insight.