I know to configure a schedular to run on any day between 1 and 28th day of a month. But, i have to have a schedular to run on last day of every month i.e. 31 of Jan, 28 of Feb, . the day differs month to month
Jayakumar,
I would try something like this. A service scheduled to run everyday, but first thing that does when it wakes up is to check if that it is the last day of the month (may be by checking next day is 1st by adding 24 hrs to today or something like that). If it is not the last day this service just exits, or else runs your service which should be run at the month end.
You can do this check with a java service.