I have set my mobileFirst platform foundation v7 hybrid app to communicate with the worklight server using the port 9080 (defined it in worklight.properties and also built the app to communicate through it).
The problem I have is the following:
I want to change the port of the url console from http://MyUrl.com:**9080**/worklightconsole/index.html
to http://MyUrl.com:**9090**/worklightconsole/index.html
.
I am updating the server.xml file but if I change the ibm.worklight.admin.endpoint to
<jndiEntry jndiName="worklightconsole/ibm.worklight.admin.endpoint" value='"http://myUrl.com:9090/wladmin"'/>
and httpEndpoint to
<httpEndpoint id="defaultHttpEndpoint"
host="*"
httpPort="9080"
httpsPort="9443" >
the console opens but the app is no longer communicating with the server.
What steps must I do in order to achieve what I want?