Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "RAP/WebClient"

< RAP
(New page: = General Information = The web client is the default client delivered by the RAP server if an application URL is entered into a web browser. = Server API = = Client API =)
 
Line 3: Line 3:
 
The web client is the default client delivered by the RAP server if an application URL is entered into a web browser.
 
The web client is the default client delivered by the RAP server if an application URL is entered into a web browser.
  
= Server API =
+
= Server API =
 
+
  
 +
The web client is represented on the server by the class <code>org.eclipse.rap.rwt.client.WebClient</code>, which can be obtained via <code>org.eclipse.rap.rwt.RWT#getClient()</code>. Besides the methods specified by the <code>org.eclipse.rap.rwt.client.Client</code> interface, it also provides a number of constants that may be used in the configuration map of an [http://eclipse.org/rap/developers-guide/devguide.php?topic=advanced/application-configuration.html application entrypoint].
  
 
= Client API =
 
= Client API =

Revision as of 06:26, 24 October 2012

General Information

The web client is the default client delivered by the RAP server if an application URL is entered into a web browser.

Server API

The web client is represented on the server by the class org.eclipse.rap.rwt.client.WebClient, which can be obtained via org.eclipse.rap.rwt.RWT#getClient(). Besides the methods specified by the org.eclipse.rap.rwt.client.Client interface, it also provides a number of constants that may be used in the configuration map of an application entrypoint.

Client API

Back to the top