Child pages
  • Web Client

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note
titleUsing Query parameters instead of ...

In all examples above, the specification of the key and value can also be done through query parameters, for example:

Code Block
{serverUrl}/servoy-webclient/ss?s={solutionName}&m={methodName}&a={value}&{param1}={value1}&{param2}={value2}

Starting Non-Debug Web Clients

In Servoy, it is possible to launch non-debuggable Web Clients against the Developer. In order to do so, the parameter nodebug has to be added to the URL. The Web Clients will be started with the active solution.

Code Block
titleNon-debug Web Client Start URL
{serverURL}/servoy-webclient/ss/s/{mySolutionName}?nodebug

Browser Sessions

As browsers share session information between all their tabs and windows, it's not possible the run multiple Web Clients hosted from the same application server within the same browser

...