find_suvro@SDN is right.
you should create a parser that initialise the application with an xml file or anything else.
the MIDlet will construct itself with the configuration file. when a new config file is available,
you can create a prompt window to ask to the user if he wants to update the MIDlet.
if true, you download the new xml file and the MIDlet automatically recreate the GUI...
good luck
> thank u all
>
> supareno
> can u please explain me more about ur solution? and
> what do you mean about the configeration file, is it
> jad file?
the jad file is used to install the app on your mobile...
when i say 'configuration file' i mean that your app is looking at each starting on the web
server to see if a new config file is available. if it's true, the app download it and rebuild
itself.
the config could be a txt file, an xml file, a serializable object,...
the job is:
MIDlet -> asktotheserver
|
|_ <yes> : download the file and parse it to create new design and store the file in the RMS
|
|_ <no> : load the config file from the RMS and and parse it to create the app
good luck