Child pages
  • Web Client

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Web Client Start URL

What is does

Comments

{serverUrl}/servoy-webclient

Opens the "Select Solution" webpage

The "Select Solution" webpage will not list any solutions if solution browsing is disabled, see #Solution browsing.

{serverUrl}/servoy-webclient/ss/s/{mySolutionName}

Opens the specified solution

 

{serverUrl}/servoy-webclient/ss/s/{mySolutionName}/a/{value}

Opens the specified solution. The argument value is passed into the Solutions onOpen event handler.

 

{serverUrl}/servoy-webclient/ss/s/{mySolutionName}/a/{value}/{name1}/{value1}/{name1}/{value2}

The same as the previous scenario, but with additional custom keys for additional arguments

 

{serverUrl}/servoy-webclient/ss/s/{mySolutionName}/m/{myMethodName}

Opens the specified solution and executed the specified method after the solution is opened

 

{serverUrl}/servoy-webclient/ss/s/{mySolutionName}/m/{myMethodName}/a/{value}

The same as the previous scenario, but specifying a single value to be passed as an argument into the onOpen event handler and deeplink method

 

{serverUrl}/servoy-webclient/ss/s/{mySolutionName}/m/{myMethodName}/a/{value}/{name1}/{value1}/{name2}/{value2}

The same as the previous scenario, but with additional custom keys for additional arguments

 

Include Page
Serv52:shortHandLinkSyntaxServ52:
shortHandLinkSyntax
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}

...