How to launch an application from Servoy Application Server?

Hi,
I try to launch an NGClient solution with this URL:
localhost:8080/solutions/example.html
But nothing to run on browser.

Suggestions? In Wiki I don’t find any tips.

Thanks

Hi GianLuca,
When I launch my ngclient application the url is

http://localhost:8080/solutions/[SolutionName]/index.html
I think you missed the solutionname in your URL.

Derk

Sorry, I mistyped the URL :oops:
http://localhost:8080/solutions/example/index.html not work for me.

ngclient is a WAR only deploy,

so you need to export it as a war and deploy it on a tomcat (or other app server) installation.

It will not work on a servoy_application server (the bundled tomcat) installation because a ngclient needs a lot more stuff then just the .servoy (solution) file to run

Thank you Johan.