views:

308

answers:

5

On clicking a URL displayed in my application running on a Symbian S60 3rd Edition device should make the phone browser ( which is already open ) open the specified URL.

Here is the code:

_LIT( KUrlPrefix,"4 " )

void CMunduIMAppUi::OpenInBrowser(const TDesC& aUrl)
    {
    HBufC *url = NULL;
    const TInt KWmlBrowserUid =0x10008D39; 
    TUid id( TUid::Uid( KWmlBrowserUid ) );
    TApaTaskList taskList( CEikonEnv::Static()->WsSession() );
    TApaTask task = taskList.FindApp( id );

    // Checks if the browser is already open
    if ( task.Exists() )
        {
        HBufC8* parameter = HBufC8::NewL( aUrl.Length()+ KUrlPrefix().Length());
        parameter->Des().Copy(KUrlPrefix);
        parameter->Des().Append(aUrl);

        task.BringToForeground();
        task.SendMessage(TUid::Uid(0), *parameter); // UID not used

        delete parameter;
        parameter = NULL;
        }
    }

When I use this code to open a URL the browser comes to the foreground but does not get directed to the URL.

I suspect something is wrong in SendMessage call that is called after the browser is brought to foreground:

task.SendMessage(TUid::Uid(0), *parameter); // UID not used
+1  A: 
Teknolog
I tried the code you posted but could not get the browser to open the URL. Just curious, what phone did you test this on? I am using a Nokia N95.
ardsrk
Did you check your capabilities? I am quite sure we used this on all 3rd edition phones.
Teknolog
+1  A: 

You can easily do it with Qt, if you don't mind a dependency on Qt.

QDesktopServices::openUrl(QUrl("http://yoursite.com/"));

Hope this helps.

Venemo
@Venemo Thanks. But I don't want to compel users to install Qt for just this one feature.
ardsrk
@ardsrk - Understandable. Still, I wanted to point it out as a viable option. :)
Venemo
+1  A: 

Maybe it would cooler to open the link inside your app instead:

    _LIT( KTestUrlPrefix,"4 " );
iOverriddenSettings = new (ELeave) TBrowserOverriddenSettings;
iOverriddenSettings->SetBrowserSetting( EBrowserOverSettingsSmallScreen, EBrowserOverFullScreenValueSoftKeysOnly);//(TUint) 1 );
iOverriddenSettings->SetBrowserSetting( EBrowserOverSettingsAutoLoadImages, (TUint) 1 );
iOverriddenSettings->SetBrowserSetting( EBrowserOverSettingsFontSize, (TUint) 0 );
iOverriddenSettings->SetBrowserSetting( EBrowserOverSettingsFullScreen, EBrowserOverFullScreenValueNormal);//(TUint) 0 );
iOverriddenSettings->SetBrowserSetting( EBrowserOverSettingsCustomAp, (TUint) iIAP ); //access point ID 


HBufC* parameter = HBufC::NewLC( KTestUrlPrefix().Length() + aLink.Length() );
parameter->Des().Copy( KTestUrlPrefix );
parameter->Des().Append( aLink );
if(iLauncher)
{
    delete iLauncher;
    iLauncher = NULL;
}
iLauncher = CBrowserLauncher::NewL();
iLauncher->LaunchBrowserEmbeddedL( *parameter, NULL, NULL, iOverriddenSettings );
CleanupStack::PopAndDestroy();
Riho
ardsrk
I don't see any reason why it shouldn't be Symbian signed. Who knows why it was commented out in your sample.
Riho
+1  A: 

Have you tried the Browser Launcher API which is documented here and can be downloaded here?

KevinD
A: 

You need the SwEvent capability for TApaTask::SendMessage (but this is not mentioned in the documentation).

Haukur Hreinsson