vote up 2 vote down star

hi everyone

In my application user can add there reminder for the specific day and reminder will be send to there email address ....

but how can i send there reminder on that day ...

please help me .

flag

27% accept rate

3 Answers

vote up 0 vote down

You need to do this on the server side, which means you won't be using GWT. You need to look into the scheduling capabilities of whatever server platform you are running on - cron jobs on unix, scheduled tasks on windows, etc. Also, your servlet container might have some scheduling capabilities as well. We can't really help you without knowing more.

What server platform are you developing on? GWT is a client side technology, so that's not going to help. Are you running a J2EE server, a simple servlet container?

link|flag
vote up 0 vote down

A cron job would ideal for this type of task

link|flag
vote up 2 vote down

Don't use a servlet; use a task scheduled by the OS or Quartz and just call a POJO.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.