blackberry-simulator

RESTful Web Services Implementations in Mobile Devices

微笑、不失礼 提交于 2019-11-29 17:46:51
I have several questions around the implementations of RESTful web services in mobile devices: Mobile client as a RESTful web service consumer: How can I build a RESTful mobile web service client and/or consume a remote RESTful web service from a mobile device? Can I use the JSR311 (aka JAX-RS) directly to implement RESTful web services in mobile device? or is there any JSR172-like or KSOAP-like for RESTful web service in mobile devices? Mobile host as a RESTful web service provider: is there any way I can host RESTful web services in a mobile device; can I use any of the existing RESTful

Can I develop Blackberry applications using C# .NET on windows7

时光怂恿深爱的人放手 提交于 2019-11-29 14:14:52
问题 Hey, I have a keen interest to build an application for blackberry OS, can I do it with C#? Also Blackberry has launched a plug-in for Visual Studio but how would you use it along with the simulator? 回答1: Supposing you talk about BlackBerry Plug-in for Microsoft Visual Studio 1.2: The BlackBerry® Plug-in for Microsoft® Visual Studio® allows web developers to leverage existing Microsoft® based developer tools to create and debug web projects for BlackBerry smartphones. see video lesson read

http post with blackberry

荒凉一梦 提交于 2019-11-29 08:51:41
I am trying to set up an http post in my Blackberry app. I have successfully implemented this in my corresponding Android app, so I know the server it working find. I have tried several different things, and I'm not really getting errors, its just the info on the server is not getting updated. I have looked at this post: Http POST in BlackBerry , and several others. I found them helpful, but they didn't ultimately solve my problem. Again, I don't get errors, but the server doesn't get updated. Here is the code I am currently using: String url = "http://xxxx.com/ratings/add?;deviceside=true";

RESTful Web Services Implementations in Mobile Devices

一笑奈何 提交于 2019-11-28 12:02:09
问题 I have several questions around the implementations of RESTful web services in mobile devices: Mobile client as a RESTful web service consumer: How can I build a RESTful mobile web service client and/or consume a remote RESTful web service from a mobile device? Can I use the JSR311 (aka JAX-RS) directly to implement RESTful web services in mobile device? or is there any JSR172-like or KSOAP-like for RESTful web service in mobile devices? Mobile host as a RESTful web service provider: is there

Blackberry Apps - Importing a code-signed jar into an application project

醉酒当歌 提交于 2019-11-28 10:26:42
I'm working on a library project that Blackberry Java developers can import into their projects. It uses protected RIM APIs which require that it be code-signed, which I have done. But, I can't get my Jar imported and working with a simple helloWorld app. I'm using the eclipse plug-in Blackberry-JDE. EDIT : Solution found.... since I found the solution I removed the things I've tried, leaving only the solution ... BUILDING THE SDK/Libary (use BB-ANT-TOOLS, either in eclipse or standalone) steps: A) I had to build my SDK's jar as an 'cldc' application not as a 'library' project, using BB-ANT

http post with blackberry

爱⌒轻易说出口 提交于 2019-11-28 02:13:03
问题 I am trying to set up an http post in my Blackberry app. I have successfully implemented this in my corresponding Android app, so I know the server it working find. I have tried several different things, and I'm not really getting errors, its just the info on the server is not getting updated. I have looked at this post: Http POST in BlackBerry, and several others. I found them helpful, but they didn't ultimately solve my problem. Again, I don't get errors, but the server doesn't get updated.

Unable to connect to internet in Blackberry device?

早过忘川 提交于 2019-11-28 00:35:10
I am developing an app where i am using browser field to load html files in it. My code is as follows. Main.java //pushing screen to browser field page.. public Main() { // Push a screen onto the UI stack for rendering. pushScreen(new WebViewController()); } WebViewController.java BrowserFieldConfig bfConfig = new BrowserFieldConfig(); bfConfig.setProperty(BrowserFieldConfig.NAVIGATION_MODE, BrowserFieldConfig.NAVIGATION_MODE_POINTER); bfConfig.setProperty(BrowserFieldConfig.JAVASCRIPT_ENABLED, Boolean.TRUE); bfConfig.setProperty(BrowserFieldConfig.ALLOW_CS_XHR, Boolean.TRUE); bfConfig

Blackberry MDS simulator - Can't connect to the internet in the simulator

╄→гoц情女王★ 提交于 2019-11-27 13:57:39
问题 I'm trying to do some testing of a website through the Blackberry simulator, while the simulator works fine, I can't get to any sites in the Blackberry Browser. Here is the specific setup I'm using. I'm Windows 7 (64-bit) Home Edition I have the latest (at the time) MDS installation - BlackBerry Email and MDS Services Simulators 4.1.4 Finally, I have the latest (at the time) Blackberry Simulator - BlackBerry Smartphone Simulators 5.0.0 (5.0.0.442) - 9700 I first start the MDS service, it

Http POST in BlackBerry

十年热恋 提交于 2019-11-27 02:11:36
Greetings, I am trying to setup a server connection from my BlackBerry Application . I was able to get a response code on the status of the server. Now i have a few values which i have to POST to the server Its like a registration page values(username, password, age ) have to be sent to the server . ConnectionFactory connFact = new ConnectionFactory(); ConnectionDescriptor connDesc; connDesc = connFact.getConnection(url); if (connDesc != null) { HttpConnection httpConn; httpConn = (HttpConnection)connDesc.getConnection(); try { final int iResponseCode = httpConn.getResponseCode();

Http POST in BlackBerry

两盒软妹~` 提交于 2019-11-26 10:00:27
问题 Greetings, I am trying to setup a server connection from my BlackBerry Application . I was able to get a response code on the status of the server. Now i have a few values which i have to POST to the server Its like a registration page values(username, password, age ) have to be sent to the server . ConnectionFactory connFact = new ConnectionFactory(); ConnectionDescriptor connDesc; connDesc = connFact.getConnection(url); if (connDesc != null) { HttpConnection httpConn; httpConn =