Tagged Questions
0
votes
2answers
43 views
Java / Eclipse - macro to specify current method name?
I'm using eclipse and want to have a "macro" that the preprocessor will replace with the name of the current method before compiling it.
I have an error reporting function, that is called as: ...
0
votes
1answer
19 views
Blackberry XML parsing not working
I have following code for parsing
public class XML_Parsing_Sample extends UiApplication{
//creating a member variable for the MainScreen
MainScreen _screen= new MainScreen();
//string ...
1
vote
1answer
55 views
Using Browserfield.displayContent with <frame> that has an external url
I am trying to create a screen for a blackberry 5.0+ app that has a banner at the top and then a Browserfield underneath that views an external site. The banner is hosted on one site and the content ...
0
votes
0answers
22 views
[BlackBerry - Java]Error: Module 'My_Project' must be signed with the RIM Runtime Code Signing Key (RTT)
In the BB java project, I try to add a feature to make sure the app can running on the backgroup.It runs normally on BB's emulator but failed with an error while run in the device.
Error: Module ...
1
vote
0answers
25 views
Blackberry Push Notification - Not receiving on Device
I am struggling for getting message on devices since last some days. At last I think to take a help from experts.
Below are the steps I have followed.
I have created Push initiator in core java. ...
1
vote
1answer
27 views
Getting A NumberFormat Exception in BlackBerry
I am trying to parse a string to int value. But i am getting a NumberFormat Exception. I am writing the below code:
Logger.out("Myprof", "Contact "+strContact);
try{
i = ...
0
votes
0answers
32 views
Blackberry Facebook SDK NoClassDefFoundError on OS 7.1
When I try to run Strawberry application (facebook-bb-sdk-0.8.25), it runs well on BlackBerry OS 5.0, 6.0, and 7.0. But in OS 7.1 it throws exception NoClassDefFoundError right after the icon was ...
2
votes
0answers
16 views
Unable to run Blackberry app in device 907 invalid cod file
I just develop a blackberry application and want to run in my device.
I have been set up code signing key.And install it successfully but not able to run on my device,When I run the .jad file it says ...
-1
votes
1answer
64 views
Push notification blackberry [closed]
I am working on blackberry application for the firt time and it require "push notification" to communicate between web server and my app.I want to ask two questions
1.How can I make my web server a ...
0
votes
0answers
45 views
Background Image scroll vertical in Blackberry?
how do I retain a background image after we scroll vertically?
now, i am getting the image fit to the device height and width, but when i scroll down it will show white background.
here is my code
...
-1
votes
0answers
23 views
How to sync large amount of data in Blackberry
What i want to do is to sync my application database from server thus i've created a for loop in which server Url hit with paging in every page there are 15 records.
Initially it was downloading the ...
1
vote
1answer
28 views
How to Set Background Image In Blackberry 7.1
i am trying to set background image for Blackberry 9900 simulator, i have written code like below
BitmapField _bitmap ;
private int phoneWidth = Display.getWidth();
private int cellHeight = ...
-1
votes
0answers
43 views
push notification-Blackberry [closed]
I have to build a notification app for blackberry,and I have a registered my device and I am using C# server to send notification,But can't receive notification on my device...
Please help me ...
-1
votes
0answers
24 views
DatabaseException Contraint failed in Blackberry
I am trying to insert a row in my database:-
insert into ZCATEGORYLIST values (1,1,1,"Peter House","Oxford Street","","Other"," EPC ASSURE LTD - ...
1
vote
1answer
67 views
PhoneGap CreateProcess build errors. C:\Program not found
I've been building PhoneGap apps for BlackBerry for about a year now. Suddenly, the build process is hitting errors like this:
build:
[exec] [INFO] Parsing command line ...
0
votes
1answer
42 views
Convert date to milliseconds in Blackberry
DateTimePicker datePicker2 = DateTimePicker.createInstance();
datePicker2.doModal();
Calendar cal = datePicker2.getDateTime();
Date date = cal.getTime();
TimeZone ...
-1
votes
0answers
49 views
Blackberry - calling super.sublayout causes stack overflow
Edit on Nate's request:
public class MainView extends MainScreen implements FieldChangeListener
{
private VerticalFieldManager vfm = new VerticalFieldManager(...);
private CustomField field1 ...
0
votes
0answers
15 views
blackberry webworks error annotations are not supported
I have this application I'm developing, I already have an Android and iOS build, now I'm trying to build for blackberry.
I included a config.xml file and using the command prompt to build the ...
0
votes
0answers
20 views
Suddenly stops to install cod file in simulator
i am in few trouble now. I am working on a blackberry project. I've a large number of images in img folder near about 6 MB.
But it was working fine in simulator in this morning. Unfortunately device ...
0
votes
0answers
28 views
How to manage screen for Storm device
I am working for Blackberry application. In which i need to develop application for 4 kinds of resolution as mentioned below:-
640X480
480X360
320X480
&
360X480
I've developed application for ...
0
votes
0answers
29 views
Blackberry console output screen
I am new in blackberry application development,i would like to know that how could i get the console output to see the event log .In Android logcat is used to see the event log of the simulator, is ...
1
vote
1answer
48 views
jar file not compatible with blackberry
This code is working fine with android application but when i try to use with blackberry application i have found below error
CODE :
import java.math.BigInteger;
import java.security.KeyFactory;
...
1
vote
2answers
63 views
Blackberry - Call a method after a specified time
After creating a session, i want to call a method again & again after a specific time - i.e. 5 sec.
But when i call a method it gives me an error. Here is the sample code.
public class ...
0
votes
0answers
20 views
Blackberry7 Date TimeZone
I'm trying to get the current date from System.currentTimeMillis() but it is returning me Time for different TimeZone. How to make it to my TimeZone which is GMT 5. Using Blackberry 7 SDK JAVA, ...
2
votes
1answer
67 views
Clearing Screen stack and disable back button in Blackberry Application
I have a requirement to restrict the user from pressing back button or disabling the back button in a screen. How should I get the Task done?
And Also on the same screen if user clicks the Ok button ...
0
votes
0answers
49 views
File System Out of Resource in Blackberry
I am playing song through my app using this piece of code,
private void playSong(final String song_Name) {
try {
p = ...
0
votes
0answers
21 views
Detect SDCard in Blackberry [duplicate]
Need help with this SDCard code.I am using this piece of code
but its working accurate randomly.
boolean sdCardExist() {
boolean sdCardPresent = false;
Enumeration e = ...
2
votes
1answer
53 views
How can i store 32 MB file in Blackberry project
Recently i am developing application for android and blackberry.
What i need to do is to store a 32MB Sqlite file in project as initial database for application uses. In case of android it is simple ...
5
votes
1answer
292 views
Facebook Blackberry SDK Error 500
I am trying to create application in BlackBerry that connect to Facebook using facebook-bb-sdk-0.8.25 . First time I used it, it ran well for a few days. But since 5 days ago, after coming into login ...
1
vote
0answers
39 views
Java BlackBerry GPS
I'm trying to create a BB app that uses the GPS.
The _screen appears but the _status dosen't change (it always says 'Waiting for location update').
I create the object with new GPS(lugar), but it ...
0
votes
1answer
126 views
HTTP Post request on BlackBerry
I am trying to send a json string , from my BlackBerry OS < 7.X application to my Server. I am trying to use an HTTP Post request. What i have done so far is :
String httpURL = ...
2
votes
1answer
60 views
Illegal state exception :Field added to a manager while it is already parented
I'm getting exception IllegalStateException :
Field added to a manager while it is already parented
When i call below function second time,when i am changing the value of spinner and this ...
0
votes
1answer
82 views
Read/Write File in blackberry
I am writing to a file using this code.
protected void writeFile(String text) {
DataOutputStream os = null;
FileConnection fconn = null;
try {
...
1
vote
1answer
45 views
Strange BlackBerry log
I am using the code below , as part of my push notifications implementation:
private static final String BPAS_URL = "http://pushapi.eval.blackberry.com";
private static final String APP_ID = ...
2
votes
2answers
100 views
Integrating Post Web Services in Blackberry app
I am very new Blackberry App Development and facing a big problem in integrating Web Services in my Blackberry app. I have to use Post Web Services in the Application and don't find even a single ...
0
votes
1answer
35 views
BlackBerry MapField
problem using BlackBerry MapField
This is the code i use for displaying a map:
class MapScreen extends FullScreen
{
public MapScreen()
{
super( FullScreen.DEFAULT_CLOSE | ...
0
votes
1answer
114 views
how to send the text message to multiple numbers in blackberry java applications? [duplicate]
Send the Text message(SMS) to multiple numbers in blackberry java applications. i tried the program to send the text message with single mobile numbers. how to i do in multiple mobile numbers?
This ...
5
votes
2answers
174 views
invoking native MenuItem(Switch Application, Close, etc.) in my CustomMenu in blackberry
I need to create a custom menu in my blackberry application so that I can manage its appearance. I managed to create my custom menu by creating a class which extends a PopupScreen and having my ...
4
votes
0answers
116 views
Get Cell ID and LAC in CDMA BlackBerry devices (OS5 and greater)
I am stuck on how to get CellID and LAC in CDMA BlackBerry devices supporting OS 5 and greater. I have to get Latitude and Longitude without using GPS. So, i have implemented the solution for GPRS ...
0
votes
1answer
149 views
how to call web service from blackberry native application
This is my code in Blackberry java Eclipse plugin How can i invoke webservice in this code to store the below mentioned fields like _firstName ,_lastName ,address,mobileNumber in database by calling ...
0
votes
0answers
79 views
How to push video from tomcat server to any mobile device? [closed]
I need to develop Mobile App and Application Server for below requirements.
Video Should be Broadcasting from application server to any mobile device ( Android, iPhon, BlackBerry, Windows Phone and ...
0
votes
1answer
26 views
Java Web Scrapping for blackberry apps
I am trying to find a way to collect information of all application from Blackberry App World. The Process I followed for Apple was simple because it had api and also for android/windows I got the ids ...
1
vote
2answers
64 views
Blackberry application compatibility for 7.1
I have develop blackberry application using BB SDK 5.0 and tested it till 7.0 SDK and is run perfectly till 7.0.
I don't have the devices or simulator for 7.1 SDK, so is my application be able to run ...
0
votes
0answers
109 views
Get string array from web service stubs into a list on BlackBerry Java App
I am getting an array of strings from a web service. I already generated the stub classes and imported them into my BlackBerry project. Now how can I access that array of strings and put that into a ...
-4
votes
1answer
55 views
how to make a jar file purchasable [closed]
I have developed one application in Blackberry, and i want to sell the ".jar" file of that application for fellow Blackberry developers, I have no idea how to sell it. can anybody suggest how can i ...
2
votes
2answers
41 views
TableLayoutManager doesn´t put the focus in manager with two focusable elements [duplicate]
I´m using TableLayoutManager in my project. This is an example of my problem:
I have this code:
public MyScreen() {
setTitle("TableLayoutManager_Example");
VerticalFieldManager vfm0 ...
0
votes
0answers
49 views
could not find application icon in Simulator BlackBerry java plugin for Eclipse Run
I've installed BlackBerry Plugin for Eclipse. Create simple Hello World blackberry application. Execute "Run as BlackBerry Application".
But in simulator window I couldn't see application running. ...
0
votes
1answer
43 views
Blackberry: Can't uploading 2nd file to server [closed]
I have developed a Blackberry project where I'm using many threads which make or upload files to my server. When I run my project, either on simulator/device, it uploads the first file whichever ...
0
votes
1answer
61 views
NullPointerException parsing JSON object
I'm getting an exception from my code below:
int[] startApps;
JSONObject jsonObjectMapData=new JSONObject(result);
JSONArray jsonaryPlaceMark = jsonObjectMapData.getJSONArray("Apps");
JSONObject ...
-2
votes
5answers
83 views
error parsing JSON object in blackberry [closed]
My php as follows:
<?php
$str = '{
"name": "10.000000,106.000000",
"Status": {
"code": 200,
"request": "geocode"
},
"Apps": [ {
"Thread1": 1,
"Thread2": 1
"Thread3": 1
"Thread4": 1
...



