mobile maps

Hi! I need help for a school project. The idea of the project is that users can upload a map (an image), supply the necessary information (to be stored in a database), so that other users can download the map and view it on their mobile phones. Example, the users can select which map to download and run on their phones.

I was wondering if you have any ideas/suggestions on how best to do this project.

Many thanks in advance...

[449 byte] By [skidgeea] at [2007-10-3 11:21:55]
# 1
HiWhat ideas do you have until now?Mihai
Printisora at 2007-7-15 13:47:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2

The desktop should only allow map editors to upload a map and supply map information. I was wondering if it's possible for the desktop application (made from regular java) to generate a midlet (made from Java ME?) so that the generated jar/jad file could be run on mobile phones.

What I'm trying to do is like this project: http://www.cs.kent.ac.uk/pubs/ug/2005/co600/mobimap/Technical%20Report.pdf

except that users can choose which map to run on their phones from maps that other users uploaded on the desktop.

skidgeea at 2007-7-15 13:47:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3

I think you are complicating things a little. I don't know why you say that a server should generate your client application which could be then downloaded by your clients. You should build the client and server side application separately, make the client send the image to the server using maybe http, and then other clients can download the image from the server.

You can find tutorials and articles regarding http communication between j2me application and server.

Mihai

Printisora at 2007-7-15 13:47:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4
Thanks for the reply.I found tutorials regarding http communication. But I think I want to create a midlet that is stand-alone/ disconnected from a server. Is this at all possible?
skidgeea at 2007-7-15 13:47:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 5
Your MIDlet will be standalone, but you will need a server when you want to send the picture(s) in order for other clients to be able to download them (you could use direct communication between clients by means of bluetooth also). Mihai
Printisora at 2007-7-15 13:47:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 6
Okay...I'll try that. Thanks!
skidgeea at 2007-7-15 13:47:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...