Link to home
Start Free TrialLog in
Avatar of kmliu
kmliu

asked on

Programming question for PALM

<<Background & Problem>>
I am a project planner who working on Insurance company. And I am planning an PALM application.
Currently, our company agent check their client's information and policy information through our company's intranet. And I am propose to my boss let agent download the information to their PALM, but my boss concern if the agent terminate, they will hold the data on their PALM.

<<My high level idea>>
Since the agent need the user id and password to access our company intranet, I want to plan there are time setting on the palm application, say when agent download all the data and then convert to the PALM application, they can see such information within 1 days. After the day, they cannot see the data, they need access to Intranet to generate the activation key, then input to the Palm application, then they can see the data again.

So, if the agent's termination, our company will block their Intranet accout, they cannot generate the activation key and cannot see the data on PALM application.

<<There are Problem>>
But in my experience, programmer will using the date to generate activation key, say if today (12.9.2003), the activation key is 0998877, the agent's termination on next day (13.9.2003), Although he or she cannot generate the up-to-date activation key, but he or she can set their palm date back to 12.9.2003, and input the old activation key.....then, he or she can see the data again.....so, how can I do??

Thank you!!!!!!!!!!!!!!!!!!!!

Avatar of jimmack
jimmack

One option would be to delete the information in the Palm when the expiration time occurs.

You could also store the last time at which the data was accessed and if this is earlier than the current time, present a warning that a new activation key is required.
ASKER CERTIFIED SOLUTION
Avatar of bhagyesht
bhagyesht
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial


The easiest (although, not extremely efficient) is to allow the palm to create a request for data.  The server then creates a text file (encrypted perhaps) with the current date stamp.  That file is what is read and displayed on the palm.  Palms are only allowed to read a file with the same date stamp on it that their palm has.  

And of course, if the data is on a server somewhere you can obviously clean up after yourself.  Run a utility every night that deletes all files in a specified directory (where your palm records are kept)