Reputation: 1019
I created an application using worklight 6.0. after I build and deploy open the console I get
Context Root Not Found
I checked the worklight.properties file and added the port number there(10080)... but still I can't get the application viewed in the console.
Upvotes: 0
Views: 4165
Reputation: 44516
The context root by default is the name of your Worklight project.
If you want to "manually" reach Worklight Console in your browser, then make sure to follow the correct URL structure, which is: http://host:port/contextroot/console
. For example: http://localhost:10080/myFirstApp/console
You can also open Worklight Console via Eclipse:
Window > Preferences > General > Web Browser
No need to edit worklight.properties
or any other file; this works as-is out-of-the-box
Upvotes: 3