Can application descriptor give the other application descriptor in blackberry? - blackberry

I want to know that can currentApplicationDescriptor() method of ApplicationDescriptor class give the another third party application descriptor...
thanks in advance.

CodeModuleManager is what you want
Its not an application descriptor, since that just parses your XML into the class members. But it does read the info on other applications.

Related

What's the best way to store a Framework/API key for an iOS/Mac project?

As an example let's take the google api, you need a key for your app in order to start using the framework correctly.
Because I don't want the key to be explicitly available in a configuration file inside the .ipa, I'm specifying the api key in one of my implementation files, something like:
#define kGoogleAPIKey = #"XXXXX"
for further use in that class.
Is this the best way to do this in terms of security? If not, which alternatives do I have?
Thanks in advance!

Is it possible to achieve string localization inside of a statically linked lib?

I am working on building an SDK which will be built out as a statically linked library that third party applications can then drop in to their applications. Inside of this SDK, I was looking to be able to perform some "localization." Basically, I would like for the code in my SDK to be able to access some ".string" files to perform some string lookup and language translation capabilities. Then I could propagate these strings outward to implementing App layers through my exposed API's. Is this even possible? I thought it was but now that I have actually been trying, I am seriously having doubts.
You can make specific API to make the localized strings to be fed into the static library. One way for achieving it is by defining a predefined key value pair for all your library strings and ask end user to provide a localized files if a new language needs to be supported.

How to use onvif services provided by Axis camera

I'm new to webservices,can someone help with to get started.I have an Axis M3004-V camera and i want to use the services(Webservices) provided by them,m not knowing how to start.I googled for the WSDl file and all i found is this http://www.onvif.org/onvif/ver10/device/wsdl/devicemgmt.wsdl ,how to get the wsdl file?
how do i generate the client code using this WSDL?
Thanks in Advance.
you should probably start by reading the ONVIF application developer's guide. You could also register to developer.onvif.org , where you can talk with other people implementing ONVIF.

how to forward a call to anther number in blackberry JDE

am developing an blackberry application.. In my cantact list there are two groups 1.) Personal 2.) Work....... each having some contacts..
If a call comes from the group:personal means i want to forward to another number(which am giving)
and If a call comes from the group:Work means, i want to cut the call..
am new to this JDE, help me. .
thanks in advance..
Found this on the supportforums. Call-Control-functions.
The API is capable of initiating calls. Disconnecting a call need some kind of workaround. (e.g. KeyInjection)

Blackberry Code

I have having difficulties protecting my blackberry application persistent data with ControlledAccess object.
According to http://www.blackberry.com/developers/docs/4.5.0api/net/rim/device/api/system/PersistentObject.html, I need a PersistentObject, CodeSignKey, and ControlledAccess objects to work. I have everything except one piece:
CodeSignKey codeSigningKey = CodeSigningKey.get( "ACME" );
here, I don't know what to replace for "ACME". Is this the PIN code I chose as I filled out the Code Sign Key? Is it my package name, output file name?
The Blackberry API documentation doesn't seem to say anything about this particularly important parameter.
Help please, thanks.
You'll want to create your own key using the BlackBerry Signing Authority Tool. See this KB article for the full details.

Resources