
|
If you were logged in you would be able to see more operations.
|
|
|
|
Hi,
I am running QRTZNET on .Net2. I have my own WinTimeZone inherited from TimeZone class.
I noticed when I schedule task with different TimeZone it will either end up in Infinite loop or won't start at all.
There was a simple fix for it in CronExpression class on line 1968.
This is my change:
#if !NET_35
//return d.ToUniversalTime();
return timeZone.ToUniversalTime(d);
After that it all runs smoothly.
I have 3 questions:
1. Have not I broke anything else? (I guess not)
2. Do I have to change dateTime.ToUniversalTime() in NthIncludedDayTrigger class as well.
3. What about Calendars? In Java version they already include TimeZones? Any plans for QRTZNET.
4. If there is any work involved in any steps above 1-3 can I help out?
Thanks,
Marek
|
|
Description
|
Hi,
I am running QRTZNET on .Net2. I have my own WinTimeZone inherited from TimeZone class.
I noticed when I schedule task with different TimeZone it will either end up in Infinite loop or won't start at all.
There was a simple fix for it in CronExpression class on line 1968.
This is my change:
#if !NET_35
//return d.ToUniversalTime();
return timeZone.ToUniversalTime(d);
After that it all runs smoothly.
I have 3 questions:
1. Have not I broke anything else? (I guess not)
2. Do I have to change dateTime.ToUniversalTime() in NthIncludedDayTrigger class as well.
3. What about Calendars? In Java version they already include TimeZones? Any plans for QRTZNET.
4. If there is any work involved in any steps above 1-3 can I help out?
Thanks,
Marek
|
Show » |
|
I have submitted this to your GoogleGroup.