java-me

how to link between j2me Client and ruby on Rails Server

hello All, I m Beginner in j2me...i hv Client Server program...Client is J2me(Mobile) and Server Ruby on Rails(Desktop)..i need upload a file(txt or xml) to server(ruby on rails) from Mobile(J2me)..please Suggest me to how to give link between J2me and ruby on Rails.. It's Urgent.....I am Waiting for your answer.. Thank you.. ...

how to extract sms messages from Mobile using J2me

Hello All, How to extract SMS,MMS from Mobile using JSR-75 in J2me ...

How to call Ruby(.rb) file in J2ME

Hi All, I have a problem with Client-Server program. Client is J2ME and Server side Scripting is RUBY. I need a help for How to call Ruby(.rb) file in J2me (Client) program. ...

How to find the Mobile Number in J2ME..

I get received the Lattitude and Longitude through gps device of the mobile.I need one Unique ID or Phone Number to identify the Particular Persons details ...

IDE pros and cons for J2ME and Android development

I have been tasked with updating my teams dev. environment. This environment will be used to develop and test J2ME and Android mobile applications. I am looking at NetBeans 6.8 and Eclipse 3.6. Do you have any recommendations for why either of these would be good or bad for this? (aka mobile plugin problems, compatibility issues, ease of...

Bluetooth client/server communication between computer and mobile phone

I need just a basic example or tutorial of making a mobile phone and a computer communicate via Bluetooth. A good link/website to start from is also appreciated. Server part (computer part) can be made on many programming languages (Java, C++, Python or even something else). Client part (mobile phone) must be a Java Micro Edition MIDl...

Custom method to rescale a PNG loses transparency

Hey folks, I am working on a j2ME game for java-capable cell phones. I am attempting to scale a transparent PNG with the following method: // method derived from a Snippet from http://snippets.dzone.com/posts/show/3257 // scales an image according to the ratios given as parameters private Image rescaleImage(Image image, double XRatio, ...

How to send Mobile Images to Ruby Server using J2ME has a Client Side

In Client Side:J2Me it retrieve the mobile photos and store it in RMS database.. Then send all photo's to Ruby (Server) Script Over Http. In Server Side:RUBY Ruby script Receive that photos and store it in server.. In PHP: I ll give URL="http://localhost:80/upload.php.in J2me(Client side)...It's working Fine.. But now i use Ruby in...

How to imports Contacts from Database to Mobile in J2ME using PIM

Hi all, I done already Exporting Part..using toSerialFormat..but i have struggle in Importing Part.. I had wrote this function.. InputStream contents are comes from Server(PHP)... But i Got error..I run this one,it ll always goes catch block.. i m beginner in j2me...dats why i can't figure out.. if any one know ...please suggest me....

how to Import Contacts from Server to Mobile in J2ME using PIM

Hi all, I done already Exporting Part..using toSerialFormat.. but i have struggle in Importing Part.. I had wrote this function.. InputStream contents are comes from Server(PHP)... But i Got error..I run this one,it ll always goes catch block.. i m beginner in j2me...dats why i can't figure out.. if any one know ...please suggest m...

BlackBerry: Programmatic "Add to contacts"

If I type a phone number into the phone application on my Blackberry (5.0.0) I can hit the menu button, and one of the options is "Add to contacts" which will bring up the add contact screen, with the phone number already populated. I would like to do the same thing in my app - bring up the 'add to contacts' screen and pre-fill it wit...

Starting app on startup in Symbian S60

How do I make my application come at startup? Im using a Nokia N97 phone emulator on my pc .... I'm developing using java for Symbian S60 5th edition. Please help Thanks ...

why getAppProperty() is not static method?

getAppProperty(String key) is instance method in MIDlet class. Since all midlet in midlet suite share same manifest/jad file, so why cant it be a static method? ...

Alter blackberry application title to show unread message count

Some blackberry applications are able to set their title depending on how many messages are unread. Examples are the Gmail and ubertwitter app. Gmail will set the title to "GMail (20)" to indicate there are 20 unread message. This shows up when hovering over the icon on the main blackberry screen, or when viewing the running apps sel...

What is the best place to start learning mobile application with j2me and good free ebooks for that ?

I have not developed any mobile applicaiton so far. I am totall new person for this. I want to know what is the best place to start learning j2me. What is the best free books for that you have read. ...

Develop Graph on J2ME

Hi All, I going to develop Graph on my j2me application i've taken Canvas & I wann to draw graph on particular data then ho i can draw graph ... Thanks, Neel, ...

Image in button - j2me

Hi, I am trying to build a simple menu-based GUI with J2ME. The menu entries are currently objects of classes derived from the class Button. Is there any way I can: Replace the text in the button and have an image show instead, sort of an icon? Make the text and image appear side by side on the same menu bar. If my question is not c...

BlackBerry ApplicationMenuItem call to UiApplication

Hello, I have an Application that adds an ApplicationMenuItem to the SMS reader menu. I'm using an Application (not UiApplication) that runs on startup - so it is a background process and doesn't show on the open applications list. When i'm selecting the menu item i've made i want to show a screen, so i'm trying to create a new instance ...

J2ME Web Service Providers

Hi, I have read that it is possible to send HTTP/SOAP messages to web service using kSOAP. But is it possible in a J2ME app to receive HTTP/SOAP messages? I.e. the mobile app acting like a web service provider? How is it done? Thanks ...

why is ThreadProcessing type used in this snippet?

class Process implements Runnable{ private ThreadProcessing MIDlet; public Process(ThreadProcessing MIDlet){ this.MIDlet = MIDlet; System.out.println("Thread Process..."); } What is the purpose of using this(ThreadProcessing) here? ...