Symbian platform security rules apply to your application so adding networkservices capability is required if network access is required. Qt application's capabilities can be defined in pro file. For...
Type: Posts; User: juhanak; Keyword(s):
Symbian platform security rules apply to your application so adding networkservices capability is required if network access is required. Qt application's capabilities can be defined in pro file. For...
Hi,
Following article might help you: http://wiki.forum.nokia.com/index.php/Using_QTestLib_in_S60
Following discussion might help you:
http://discussion.forum.nokia.com/forum/showthread.php?t=187950
You can also check Anomaly example which is available at "qt root\demos\embedded\anomaly". It...
Have you checked if QNetworkAccessManager::sslErrors() signal gets emitted? If QNetworkAccessManager emits non fatal ssl errors, you can ignore them calling QNetworkReply::ignoreSslErrors() and...
This issue is already reported to the Qt Bug tracker:
http://bugreports.qt.nokia.com/browse/QTBUG-7286
Before the fix is made available, following lines should fix the problem:
WebView...
Hi,
Smart installer will solve this requirement. It's basically a small SIS that you embed to your main SIS. It will check during the install time if some required component is missing and...
Yes the capability was introduced in S60 3rd edition FP1 SDK among some other new capabilities. Unfortunately I don't know how to get it visible in older platforms. Might be that feature is simply...
Cursor is simple to enable. Just add TBrCtlDefs::ECapabilityCursorNavigation to capabilities which are passed to CreateBrowserControlL constructor. About that panic I have no idea. what panic code it...
Messagingex example shows how to send email/sms/mms messages. In my tests it worked better than Writemessage which I think is support only email sending.
I don't know if the maco is mentioned but doc\html\quickstart.html mentions that one should use QtMobility namespace.
Try to add QTM_USE_NAMESPACE macro before TestN class declaration. Mobility APIs are using QTM_NAMESPACE
namespace and macro takes it for use.
Warnings/errors of missing QNetworkInterface probably get fixed by adding "QT += network" statement to pro file.
Hi,
I think the easiest way to install Qt Mobility APIs is to run configure and make commands like Installation Guide mentions. This will export public headers under SDK's epoc32\include folder and...
Hi,
The solution above should work OK in Qt 4.6.0 final. What might have changed from past is that project needs to be linked against eikcore.lib and cone.lib.
Did you install N97 SDK first and then Qt 4.6? If not that explains why the SDK is not on the list because Qt installer installs some required components to SDK. To fix this install Qt again or...
Probably there are better ways but one option is to add a custom build step in which you execute bat that copies files. Build steps can be added from Qt Creator's Projects Mode(Ctrl+4).
Hi,
The wiki page doesn't mention these but have you added Networkservices capability and increased applications heap size? This can be done by adding following lines to pro file:
symbian: {...
Reported: http://bugs.webkit.org/show_bug.cgi?id=31875
Hi,
Seems that the function is removed from SecurityOrigin class in 4.6 RC1. It was available in 4.6 beta but without any documentation so maybe it was planned to be removed. My apologies for...
White listing destination URL should fix this problem:
QWebSecurityOrigin::whiteListAccessFromOrigin("file:","http","/www.nitobi.com",true);
If you simply want to show an image in button then the easiest way is to create an object from QPushButton or from any other Qt's button classes and set image calling setIcon() function. Example is...
Symbian OS specific configuration items can be found from here.
Authorization or any other header can be added to QNetworkRequest or QHttpRequestHeader objects. Below small code example how to add the Authorization header to QNetworkRequest and post the request...
Hi,
Using CSIPManagedProfileRegistry and CSIPManagedProfileClass you can edit, add or delete existing SIP profiles.
From the web page:
We can't give promises beforehand if API partnering request gets approved or not.
Customers asking internal APIs should submit a technical support request before API...