Languages

Menu
Sites
Language
Remote Hosted Applications

I was reading several documents which reference remote hosted Tizen apps.  I was wonder if anyone knows of examples of this.  Essentially I'm looking for a means to essentially link to a web app rather then create a widget and install that.

Thanks.

Responses

3 Replies
Palitsyna

Hello,

There are two types of Tizen Web Applications: packaged and hosted.
Packaged apps are installed on the device and stores all resources such as HTML, JavaScript and CSS files locally. They can fully use the device API.
Hosted application is a client to a remote web-resource. It is dynamically downloaded from websites and so, it stores all resources like HTML, JavaScript and CSS files on the server. This type of application can't use device API.

AVSukhov

Hello,

You can set entry point of your hosted app using:

<tizen:content src="https://www.tizen.org/" />

Used to point to a document which is hosted on an external server and acts as the Web application start page. The Tizen WRT allows the start page to be hosted on an external server.

Prajith Premanandan

By default external resource access will be denied by WRT for web apps so you have to use either use allow-navigation or access element in configuration

if you use allow-navigation CSP policy will be applied

or if you use Access element WARP policy will be applied

if u prefer adding privileges and use of device api

Please refer these docs first

HTML api access: https://developer.tizen.org/dev-guide/2.3.0/org.tizen.gettingstarted/html/details/web_runtime_w.htm

CSP: http://www.w3.org/TR/CSP/

WARP: http://www.w3.org/TR/widgets-access/