Child pages
  • Web Client

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: If a name is not specified in the iframe tag, refreshing (F5) browser content will result in wrong behavior of open div-windows and of closeAllWindows. See case SVY-3114.

...

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}
Note
titleUsing Web Client inside an iFrame

If you want to embed the Web Client inside an iframe, please specify a name attribute for the iframe tag:

Code Block
<iframe name='{someName}' src='{serverUrl}/servoy-webclient/ss/s/{mySolutionName}' ...

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

...