Hi, is there any chance of an update as to how long this issue might take to resolve?
Thanks.
Type: Posts; User: agray; Keyword(s):
Hi, is there any chance of an update as to how long this issue might take to resolve?
Thanks.
Unfortunately, it's been some years since I used gSOAP myself. There's a possibly useful Wiki article at http://www.developer.nokia.com/Community/Wiki/Using_gsoap_for_web_services
For SOAP-based webservices, there's gSOAP, which has a Symbian port. There also used to be a WDSL-to-C++ tool from Nokia that would work, although due to it only being signed for S60 3rd edition, it...
Hi,
Our application runs on a range of Nokia devices from S60 3.1 to Symbian^3 and on a number of UK networks with no particular issues, except when using Orange.
When using...
Got hold of an unlocked, unbranded C5-03, ran tests using a different network operator and we're still seeing the same issues. Given we have no problems on other handsets such as the 5230, it looks...
Received another C5-03 for testing (also operator-branded, which is unfortunate as I'd hoped to eliminate any operator-specific configuration issues) and it exhibits the same problem. The failure...
Hi all,
I'm in need of a sanity check over what I think is actually a defective phone rather than a problem with our software:
Our app sends data via GPRS using RSocket. It's a fairly mature...
Sorry, yes, I shouldn't have said "switch off A-GPS", but if we tell the Location server to use standard GPS as the Location Module and the ephemerides are out of date, we still face a long time to...
I'd still not recommend switching off A-GPS unless you absolutely have to. Without the ability to get satellite ephemerides via the network, the GPS module has to go through a very slow discovery ...
As far as I know, there's no public API to allow you to set connection settings for A-GPS. I've not looked very hard, because on most of the phones I've worked on, I suspect that the connection...
Successive GPS positions will appear to "drift" as a result of a number of factors such as ionospheric propagation effects and the GPS signal from a satellite bouncing off local obstructions,...
To confirm what's already been said, if you're using A-GPS, the phone will attempt to connect to the internet to download a look-up table of satellite positions in order to speed up getting an...
The secondary thread shares the heap of the main application thread (I'm changing that as part of a general re-write), so terminating the thread shouldn't have killed the Cleanup Stack. It was the...
Hi,
I've hit some behaviour to do with the use of CTrapCleanup and threads that I don't quite understand!
An application that I've taken over development for creates a thread that is used for...
I'm very intermittently hitting the same panic in my application following a call to RConnection::Start(TConnPref, TRequestStatus), so MHFRunL isn't even getting called before the panic occurs as...
Android and BlackBerry. Unfortunately WP7 in its current state does not offer 3rd-party developers such as myself the capabilities needed for the type of applications I'm working on. As far as I am...
Hi,
I'm working on an application that provides panic key functionality through the End Key, so that if you press the end key five times it brings our application to foreground (assuming it was...
On 5th edition, headset and accessory detection in general can be done through the Accessory Monitor API, for example:
iAccMonitor = CAccMonitor::NewL();
RConnectedAccessories...
That's it sorted! I really ought to have spotted that. Thanks for the help!
Hi,
We can capture keypresses whilst our app is in background through the use of RWindowGroup::CaptureKey(). The problem I'm having is that I need to *observe* the keypresses rather than capture...
There are four overloads for RConnection::Start(); two with a TRequestStatus parameter and two without. It's only the TRequestStatus-accepting versions that are asynchronous. The...
iConnMgr is an internal class from my project, so it won't be of any use to you. The IAP ID is a simple TUint32 so serialising doesn't need anything clever. If you don't have any persistant settings...
The following code will create a connection for the express purpose of bringing up the IAP select dialog so the user can set which IAP they want to use. You can then take the IAP ID and store it...
If you have the old IAP number from previous runs stored, you can set up your RConnection as follows:
TCommDbConnPref prefs;
if (iConnMgr.IapIdSet()) // iConnectionManager stores the IAP ID...
Hi,
In my current project, I'm trying to determine whether or not a headphone/hands-free style accessory is in use. For 5th Edition phones, we have access to the Accessory Monitoring API, but I'm...