This service allows you to launch the webOS web browser.
Example usage (from sample news application):
// Launch the Browser when user taps a story; will launch original story URL
// or a tapped link within a webView
StoryViewAssistant.prototype.webStory = function(event) {
this.controller.serviceRequest('palm://com.palm.applicationManager', {
method: 'open',
parameters: {
id: 'com.palm.app.browser',
params: {
target: this.storyFeed.stories[this.storyIndex].url
}
}
});
};