jde

Blackberry JDE ArrayList?

折月煮酒 提交于 2020-01-04 01:20:32
问题 The Blackberry JDE does not include java.util.ArrayList , even though it knows about java.util ? What's up with that? Is there an equivalent class for BB? I don't want to use an array, really, because I have an unknown number of objects I'm dealing with. why does the Blackberry JDE leave so much out? 回答1: Well they are Java from a language standpoint. It just doesn't support all of the standard edition packages. It falls more inline with the microedition standards, but is way beyond J2ME from

how to upload the file through http to the website? (Blackberry)

流过昼夜 提交于 2019-12-23 02:18:22
问题 I need to upload a file through http or ftp to the website in blackberry jde. 回答1: High level view: You open an OutputStream from an HttpConnection and write your data into that output stream. The main problem is going to be choosing which network connection to use (I recommend looking at this, unless you're on OS 5.0 which has a similar feature built in). As to uploading through FTP that will be somewhat more difficult as there is no support for FTP built into the BlackBerry API instead you

installing BlackBerry Eclipse JDE plugin on Mac OS X

安稳与你 提交于 2019-12-17 18:39:45
问题 Is it possible to install BlackBerry Eclipse JDE plugin on Mac OS X? I tried to install the plugin through the eclipse update and also by downloading the zip file from the BlackBerry site. This is the most unintuitive process for getting set up in development environment. BlackBerry site does not make it easy. 回答1: The supported Blackberry development arena is very Windows centric. The compiler (rapc) is a windows executable. I have zero Mac experience so I can't tell if this will help but

JDE WCF service

那年仲夏 提交于 2019-12-13 11:21:13
问题 Is there a simple way in which I can create a JDE Provider BSSV service in a WCF service? My requirement is that we need a third party which runs on a Microsoft platform. An entry in the third party needs to consume the JDE web service to create record in the JDE and process the same in JDE and send back the data to third party. The Client requires only WCF web service. Is there a way to create a JDE web service and host it as a WCF service? Has anyone implemented such WCF service in the past

How do you make a dropdown list that displays images to the user instead of text?

 ̄綄美尐妖づ 提交于 2019-12-12 07:59:22
问题 The ObjectChoiceField field meets all my requirements but it is not pretty. This is what I have: String pets[] = {"Dog", "Cat", "Duck" }; ObjectChoiceField dd = new ObjectChoiceField("My Pet",pets,0,ObjectChoiceField.FIELD_LEFT); But I would prefer to have pictures in the dropdown. My understanding is that the object array must contain objects that support the toString method. There are got to be a way to do I see it in other apps, I just can't find the correct object in the API. It doesn't

Unable to connecte with security server JD Edwards EntrepriseOne

狂风中的少年 提交于 2019-12-12 03:47:49
问题 its almost 3 days that i got this error : Unable to locate security server. Failed to communicate with security server JD Edwards EntrepriseOne could not sign you on. thanks for your help ; 回答1: This type of error occurs on JDE fat client when database client was configured incorrectly. For example when TNSNAMES.ORA doesn't have correct entry for JDE database. Please check oracle support document regarding this issue. 回答2: If you're sure about your JDE.INI and the security server is correct

2 questions. IDO mode not caching properly / forcing buffers to named windows

拜拜、爱过 提交于 2019-12-11 16:02:02
问题 1 My ido mode does not properly cache filenames / folders. It will list files inside a folder, but from a while ago without any of the newer files showing. Any suggestions ? 2 In jde, when I have multiple windows open, compiling on one window will create a corresponding "* name of the class *" that will open on the next window in order. This is fine if I only have one window open but can I get some help writing a function that I could use to : Name a window Force all buffers of JDE compile

how to upload the file through http to the website? (Blackberry)

◇◆丶佛笑我妖孽 提交于 2019-12-08 14:09:30
I need to upload a file through http or ftp to the website in blackberry jde. High level view: You open an OutputStream from an HttpConnection and write your data into that output stream. The main problem is going to be choosing which network connection to use (I recommend looking at this, unless you're on OS 5.0 which has a similar feature built in) . As to uploading through FTP that will be somewhat more difficult as there is no support for FTP built into the BlackBerry API instead you'll have to look at using a SocketConnection and implementing part of FTP yourself. Here's some code to get

How to get a list of background processes on BlackBerry

不问归期 提交于 2019-12-07 07:14:47
问题 I'm looking for something corresponding to net.rim.device.api.system.ApplicationManager.getVisibleApplications(), but including applications that might not/do not have a UI. Any ideas? Unreasonably complicated work-around solutions welcome, I'm growing slowly more sure that there's not a simple single call to do this... 回答1: If you know the application name you can detect if it is running or not by checking the size of the array containing all AppDescriptor actually running this app. int

How to add external jar or zip file in the Blackberry project

社会主义新天地 提交于 2019-12-01 15:04:44
问题 I want to add a jar file to my BlackBerry project. I have tried adding the jar file by the following manner -> Right click on project -> properties -> Build -> Imported jar files -> Add But after that, whenever I try to run the application I get "Module abc.jar not found error". How do I add a jar file to a BlackBerry project? 回答1: Right click on project->BuildPath->Libraries->Addexternaljar and then press ok it will solved your problem it is for if you are using eclipseplugins.you can see