Active Topics

 



Notices


Reply
Thread Tools
Posts: 306 | Thanked: 603 times | Joined on Jan 2012 @ Belgium
#811
Originally Posted by HtheB View Post
DavyP, I tried to run a "contact-backup midlet" from Vodafone (since there is no MeeGo version, there is only a java version for the Nokia section)
This is actually a bit important, because I can call dutch Vodafone phonenumbers for free, with this midlet, I can also see who uses Vodafone.

I tried to run the midlet, but it gives me some errors.
The output that I get is only:
REPORT: <level:2> <channel:1000> MIDlet class not found.

jad file of the midlet:
http://contacten.vodafone.nl/cl/J2ME-VS/install.jad

Ive inspected the jad file, and I found out that the jar file is located at:
http://contacten.vodafone.nl/cl/J2ME..._2.0.1.0.3.jar

Hope that you can help me with this one!
I doubt it you can actually make phone calls through this midlet.
It would require support of recording audio, which phoneME does
not support. From the looks of it, it seems to synchronize contacts
with SyncML.

When trying to run the app, I saw a splash screen of Vodafone,
and then a white screen. I don't know what is wrong, but I get
a null pointer exception.

Davy
 
Posts: 306 | Thanked: 603 times | Joined on Jan 2012 @ Belgium
#812
Originally Posted by Estel View Post
I tried to run one minor java midlet (used for buying tickets in train), but it closes instantly, without any errors in console or anything.

I know that it's hard ith closed source app, but it makes me curious, as other, more complicated thing (bank tokens, other ticker services) works OK. Is there any way to get more debug info?

/Estel
If you try the MIDlet Settings app, there is a config option to log all
debug output to files. This will create err.txt and out.txt debug files
in your MyDocs folder.

Hope this helps.

Davy
 
HtheB's Avatar
Moderator | Posts: 3,715 | Thanked: 7,419 times | Joined on Dec 2009 @ Bize Her Yer Trabzon
#813
Originally Posted by DavyP View Post
I doubt it you can actually make phone calls through this midlet.
It would require support of recording audio, which phoneME does
not support. From the looks of it, it seems to synchronize contacts
with SyncML.

When trying to run the app, I saw a splash screen of Vodafone,
and then a white screen. I don't know what is wrong, but I get
a null pointer exception.

Davy
no no, this isnt an app to make phone calls.. it's an app to make a backup of your contacts, and it will also show which contact is using the vodafone carrier. (i wanted this because I can make free phone calls to all dutch vodafone carriers)
__________________
www.HtheB.com
Please donate if you think I'm doing a good job.
 
Posts: 306 | Thanked: 603 times | Joined on Jan 2012 @ Belgium
#814
Originally Posted by zaidk9 View Post
Any way to fix installing of opera 6.5 and 7.0 again and again after restarting app
Did viber worked??
Can someone post all the java apps that work on N9??
I am running Opera Mini 6.5.26955 just fine, and it does not
reinstall everytime I run it.

However, if you keep mixing Opera Mini 6.5 and 7.0, then each
time you switch it will reinstall the app. That is because (I think)
Opera uses the same record stores to hold some data, and the
app identifies a version mismatch.

For now, I am sticking with Opera Mini 6.5. There is something
weird with Opera Mini 7.0 that messes up the JIT, and I do not know why.

Regards,
Davy
 
Posts: 306 | Thanked: 603 times | Joined on Jan 2012 @ Belgium
#815
Originally Posted by HtheB View Post
no no, this isnt an app to make phone calls.. it's an app to make a backup of your contacts, and it will also show which contact is using the vodafone carrier. (i wanted this because I can make free phone calls to all dutch vodafone carriers)
Well, I basically renamed the jad file so it had the same filename
as the jar file (except for the extension). But if I then select this
midlet, I get the following errors:

Can't read manifest file
java.io.IOException: line too long
at java.util.jar.Attributes.read(Unknown Source)
at java.util.jar.Manifest.read(Unknown Source)
at java.util.jar.Manifest.<init>(Unknown Source)
at sun.misc.MIDPLauncher.main(Unknown Source)
at sun.misc.CVM.runMain(Unknown Source)

This basically means the jad file is not standards compliant.
There should be line breaks after every 70 characters. Have a
look at the MIDlet-permissions line in the manifest.mf file in the jar
file, which seems to be compliant. The jad file should follow the
same encoding for that MIDlet-permissions attribute and the
digital signatures.

I think for this midlet to run, you need a fully working Wireless API
implementation (the midlet tries to access sms://:1235)

Davy
 

The Following 2 Users Say Thank You to DavyP For This Useful Post:
Posts: 306 | Thanked: 603 times | Joined on Jan 2012 @ Belgium
#816
Originally Posted by wook_sf View Post
Viber will not work cause it request access to inbox and contacts which is unsupported. maybe source can be tweaked or something?
There is an emulation layer for JSR 75-PIM (which does not
integrate nicely with the contact list of the device). However, the
midlet also makes use of Nokia specific APIs:

com.nokia.mid.s40.io.LocalProtocolConnection

for which no implementation is available. So, the midlet will not work.

Davy
 
HtheB's Avatar
Moderator | Posts: 3,715 | Thanked: 7,419 times | Joined on Dec 2009 @ Bize Her Yer Trabzon
#817
Originally Posted by DavyP View Post
Well, I basically renamed the jad file so it had the same filename
as the jar file (except for the extension). But if I then select this
midlet, I get the following errors:

Can't read manifest file
java.io.IOException: line too long
at java.util.jar.Attributes.read(Unknown Source)
at java.util.jar.Manifest.read(Unknown Source)
at java.util.jar.Manifest.<init>(Unknown Source)
at sun.misc.MIDPLauncher.main(Unknown Source)
at sun.misc.CVM.runMain(Unknown Source)

This basically means the jad file is not standards compliant.
There should be line breaks after every 70 characters. Have a
look at the MIDlet-permissions line in the manifest.mf file in the jar
file, which seems to be compliant. The jad file should follow the
same encoding for that MIDlet-permissions attribute and the
digital signatures.

I think for this midlet to run, you need a fully working Wireless API
implementation (the midlet tries to access sms://:1235)

Davy
Is it possible to add this API to PhoneME?
__________________
www.HtheB.com
Please donate if you think I'm doing a good job.
 
Posts: 306 | Thanked: 603 times | Joined on Jan 2012 @ Belgium
#818
Originally Posted by HtheB View Post
Is it possible to add this API to PhoneME?
I guess it is, but I have never done so for any of the platforms I
ported phoneME to.

Davy
 

The Following 2 Users Say Thank You to DavyP For This Useful Post:
HtheB's Avatar
Moderator | Posts: 3,715 | Thanked: 7,419 times | Joined on Dec 2009 @ Bize Her Yer Trabzon
#819
Originally Posted by DavyP View Post
I guess it is, but I have never done so for any of the platforms I
ported phoneME to.

Davy
Any help needed regarding this?
__________________
www.HtheB.com
Please donate if you think I'm doing a good job.
 

The Following 3 Users Say Thank You to HtheB For This Useful Post:
nokiabot's Avatar
Posts: 1,974 | Thanked: 1,834 times | Joined on Mar 2013 @ india
#820
Tha gps and contacts and bt api needs work
 
Reply


 
Forum Jump


All times are GMT. The time now is 19:04.