atom feed7 messages in net.java.dev.phoneme.advancedRe: Phone-me on a DELL Axim X51v PPC
FromSent OnAttachments
phon...@mobileandembedded.orgMay 4, 2007 12:15 am 
Hinkmond WongMay 4, 2007 6:18 pm 
phon...@mobileandembedded.orgMay 7, 2007 7:03 am 
phon...@mobileandembedded.orgMay 7, 2007 12:43 pm 
Hinkmond WongMay 7, 2007 8:14 pm 
Hinkmond WongMay 7, 2007 8:26 pm 
phon...@mobileandembedded.orgMay 7, 2007 11:59 pm 
Subject:Re: Phone-me on a DELL Axim X51v PPC
From:Hinkmond Wong (hink@dev.java.net)
Date:May 4, 2007 6:18:03 pm
List:net.java.dev.phoneme.advanced

phon@mobileandembedded.org wrote:

Hi, I've installed on a DELL Axim X51v (WM5-xcale) the CAB file available from
Mr Davy's site (http://www.cs.kuleuven.be/~davy/phoneme.php) for Pocket PC 2003
(PhoneME CDC rev4709) and although the installer finish successfully , I'm not
sure about how to run it. As the HelloWorld example link at Davy's site seems to
be broken, I've tried running cvm with the standard HelloWorld example (I have
phoneme cdc running well on a Ubuntu-linux x86) but it seems it doesn't work,
how can I try this on the PDA without a command line to run cvm with arguments?
Should it recognize the jar extension? Is it necessary to build a test program
that runs cvm with arguments as a command?

Maybe it is necessary to compile from the sources to make it run?

Try this:

On your PC, create a text file called <yourapp>.lnk with this format:

NN#"\bin\cvm" -Djava.class.path=.\ <yourappclass> > \output.txt 2>&1

Where you replace NN with the number of characters in the actual command line and <yourappclass> with the name of the class you are trying to run.

Example (assuming your pMEA CDC \bin and \lib are on the toplevel directory of your device):

hello.lnk

--- 40#"\bin\cvm" -Djava.class.path=.\ HelloWorld > \output.txt 2>&1

Then use ActiveSync to sync the hello.lnk file to your device and also sync your app class file to the toplevel directory of your device.

Hinkmond