Namespaces
Variants
Actions

Open WAP/Web page with browser

Jump to: navigation, search
Article Metadata

Article
Created: symbianyucca (09 Apr 2007)
Last edited: hamishwillee (25 Jul 2012)

Following code shows how you can open the phones WAP/Web browser in your own application, by just supplying Web address to browser.

In Symbian 3rd edition devices sending a new URL to an existing browser instance requires the SwEvent capability.

#ifdef __SERIES60_3X__
const TInt KBrowserUid = 0x1020724D;
#else
const TInt KBrowserUid = 0x10008D39;
#endif
 
void BrowseWAPWEB+PageL(const TDesC& aAddr)
{
TUid id( TUid::Uid( KBrowserUid ) );
TApaTaskList taskList( CEikonEnv::Static()->WsSession() );
TApaTask task = taskList.FindApp( id );
if ( task.Exists() )
{
HBufC8* param8 = HBufC8::NewLC(aAddr.Length() );
param8->Des().Append(aAddr);
// Uid is not used
task.SendMessage( TUid::Uid( 0 ), *param8 );
CleanupStack::PopAndDestroy();
}
else
{
RApaLsSession appArcSession;
// connect to AppArc server
User::LeaveIfError(appArcSession.Connect());
TThreadId id;
appArcSession.StartDocument(aAddr, TUid::Uid( KBrowserUid ),id);
appArcSession.Close();
}
}

This code opens the Web browser in 3rd edition phones, and the WAP browser with older platform devices. To open the page with WAP browser also in 3rd edition phones, just change the code to use 0x10008D39 also with 3rd edition devices.

This page was last modified on 25 July 2012, at 09:23.
120 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved