Child pages
  • Web Client

Versions Compared

Key

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

Web Clients are one of the ways to deploy Solutions to end users.

Web Client is a browser-based application of which the  UI is rendered in the browser using pure HTML, CSS and a bit of JavaScript for event handling and communication with the Servoy Application Server. The  business logic of the Solution that is running in the Web Client is executed on the Application Server for security reasons: the code of the business logic is not exposed in the webpage markup.

Stoc


Supported Browsers

The Servoy Web Client runs in the last few versions of all modern browsers, like Mozilla FireFox, Safari, Google Chrome and Internet Explorer.

See Web Client Settings for more info on enabling/disabling anchors.

Starting Servoy Web Clients

Servoy Web Clients run in a browser and can be started by accessing a URL on the Servoy Application Server.

...

titleSolution Select page

...

Web Client Start URL

What is does

Comments

{serverURL}/servoy-webclient

...

titleDeeplink into specific solution

...

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}

...

titleSpecify the method to execute on startup

Opens the specified solution


{serverURL}/servoy-

...

webclient/ss/s/{mySolutionName}/

...

a/

...

titleSpecify startup argument

...

{value}

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


{serverURL}/servoy-

...

webclient/ss/s/{mySolutionName}/a/{value

...

titleSpecify the method to execute & startup argument

...

}/{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

...

titleSpecify the startup argument & named arguments

...

}

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


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

...

titleSpecify the method to execute, the startup argument & named arguments

...

{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

...

http://www.alphaworks.ibm.com/tech/p3peditorImage Removed http://www.w3.org/P3P/implementations.htmlImage Removed

shortHandLinkSyntax

...

Running Servoy Web Client inside a Frame or IFrame

...

When running a Servoy Web Client inside an Frame or IFrame and the domain of the page into which the frame is embedded does not equal the domain from which the Web Client is hosted, there is a possible issue with the ability of storing HTTP Cookies.

Internet Explorer, by default, disallows the storage of Cookies from withing the Frame/IFrame if the domains of the page hosting the frame and the page inside the frame do not match.

By default Servoy Web Client uses HTTP Cookies to save the position and location of dialogs. Also the functions application.setUserProperty(...) and application.getUserProperty(...) utilize Cookies in the Web Client.

If no dialogs are used in the application and User Properties are not used, there is no issue. Also, when the page hosting the frame and the page inside the frame are hosted from the same domain (for example http://www.mycompany.comImage Removed) there is also no issue.

However, if dialogs or User Properties are used and are deemed important and the domains do not match, extra steps are required to make use that the application will function properly.

Option 1: Altering the Security level in Internet Explorer on every Client machine
By default the privacy level setting of Internet Explorer is set to Medium. This setting can be found under Tools > Internet Options > Privacy tab.

When the level is set to Medium, third party cookies will be blocked. By altering the privacy level to the lowest level "Accept All Cookies" the third party Cookies will get accepted. Although this works, it means that in order to be able to use the Solution properly the setting needs to be altered in the browser of all users. It can be that corporate IT departments restrict the user from altering this setting.

Note: Third party Cookies are Cookies from a different domain as the domain from the main page displayed in the browser.

Option 2: Adding a "Compact Privacy Policy" to the Web Client http://forum.developers.facebook.com/viewtopic.php?pid=204805Image Removed

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}


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.

By default, browser sessions will not timeout in web client if you keep the browser tab open and it can continue to communicate with the server - no matter what the value of the container's/tomcat's session timeout is., This is because we have a data broadcast notifier that polls the server every 5 seconds (by default) to see if there is something to report. It can be configured via the "servoy.webclient.datanotify.frequency" option in the admin page.

Embedding a Web Client in an IFrame

A Web Client solution can be embedded inside another webpage, by utilizing the IFrame HTML tags. Check out the Running Web Clients inside an IFrame tutorial for more details on embedding a Web Client inside an IFrame.

Web Client Configuration Settings

Through the Servoy Admin page, several settings are exposed related to Web Clients. These settings can be found on the Servoy Server Home > Web Client Settings. For more information on the specific settings see Web Client Settings

Basic Authentication Support for WebClient Login

If a solution running in the Web Client does not define a specific form as login form, Servoy will serve a standard SignIn page to the user (a basic html page with a username and password field).

Instead of showing the default SignIn HTML page, it's also possible to show the default browser basic authentication dialog, using one of the two following approaches:

  1. Append '/sv_auth_type/basic' to the Web Client URL. For example:  {serverURL}/servoy-webclient/ss/s/{mySolutionName}/sv_auth_type/basic
  2. Or enable it for all Web Clients (or in the developer for testing purposes) by setting the admin page property servoy.webclient.basic.authentication to true