scheduler

In ASP.NET how you get the physcial file path when HttpContext.Current is NULL?

I'm working with DotNetNuke's scheduler to schedule tasks and I'm looking to get the physical file path of a email template that I created. The problem is that HttpContext is NULL because the scheduled task is on a different thread and there is not http request. How would you go about getting the file's physical path? ...

Splitting log4j Output with Quartz Worker Threads

I'm working on an application that consists of an overall Quartz-based scheduler and "CycledJob" run using CronTriggers. The purpose of the application is to process inputs from different email inboxes based on the source country. Based on the country that it comes in from (i.e. US, UK, FR, etc.) the application triggers one job thread...

What is a good (cheap/free) calendar/schedule control for asp.net?

I need a calendar/scheduler control for asp.net - not a pop-up date picker, but a full page monthly calendar. I'm trying to create an on call rotation / scheduler utility for work, and it'd be great to display the who's on call info in a calendar on a web page where others could quickly see who's on call. using visual studio 2008/asp/n...

Request admin privileges for Java app on Windows Vista

When I try to create a new task in the task scheduler via the Java ProcessBuilder class I get an access denied error an Windows Vista. On XP it works just fine. When I use the "Run as adminstrator" option it runs on Vista as well.. However this is a additional step requeried an the users might not know about this. When the user just do...

how do i start a program (say calc.exe) based on existence of some file (1.htm) via scheduler?

Hi, I need to start a program based on existence of some file (1.htm) on the same machine using scheduler. I don't want to write any extra code. is it possibele by using that is already on windows for e.g listener etc. 1.html sometimes exist and doesnt' exist sometimes. So strictly I need to run (calc.exe) only when 1.htm exists. Basi...

How to execute schedular for data stored in .config file?

Hi, In my application data is stored in a .config file,(in XML format). User is able to set date on which he wants mail (like reminder through mail). So there should be a scheduler which will execute daily to send mails on target date to users. As there is no database interaction how is it possible to run scheduler? I am totally blank ...

How to launch Windows Scheduler by command-line?

I mean to open the built-in Windows GUI from command line- not to launch by Schtasks Thanks! ...

Is there a cron-like implementation of ScheduledExecutorService in Java?

The ScheduledExecutorService in Java is pretty handy for repeating tasks with either fixed intervals or fixed delay. I was wondering if there is an something like the existing ScheduledExecutorService that lets you specify a time of day to schedule the task at, rather than an interval i.e. "I want this task to fire at 10am each day". I ...

Imitating outlook scheduler using winform

what is the best way to mimic the scheduler screen of the outlook 2003. Currently I'm using DataGridView with customized DataGridViewCell and DataGridViewColumn as sugeested in msdn. I think DataGridView is heavy. Is there a better approach which is light weight and less CPU consuming to solve this problem? ...

A Scheduler framework for Audit - Balance and Control of the software processes

Hi all, I am looking for a scheduler framework which can provide the following functionality - 1. Audit of the processes - start time, end time and throughput of the process 2. Balance - if necessary schedule jobs according to the load 3. Control - when to run a job? like cron of Unix, helps us to schedule processes at the specified tim...

Performance Evaluation of Linux Scheduler

Hi I have done some simple changes to the scheduler in the Linux Kernel. Now, I would like to see how those changes affect the response time of the system; in other words, I would like to know how long a context switch takes with my modifications compared to the original scheduler. A straightforward approach would be to use the time st...

Free Wpf scheduler control

Is there any free scheduler control for WPF? I found ComponentOne and Telerik but they are not free. I need something with equivalent functionality that I can use in school project. ...

Adding Jobs to the 24x7 Scheduler

In the 24x7 Scheduler, a service that automates batch jobs, I always switch jobs from development to production on a one by one basis. Is there a method to perform this automatically, via XML or some other configuration utility? ...

Alternative for Windows Task Scheduler

hi, I need a Task Scheduler for Windows. Unfortunately the builtin scheduler doesn't meet my needs, which are: can run tasks every minute/hour runs on Linux and Windows 32 and 64 bit versions GUI interface free Nice to haves: supports CRON files open source status reports of execution times thanks! ...

C++ - how does Sleep() and cin work?

Just curious. How does actually the function Sleep() work (declared in windows.h)? Maybe not just that implementation, but anyone. With that I mean - how is it implemented? How can it make the code "stop" for a specific time? Also curious about how cin >> and those actually work. What do they do exactly? The only way I know how to "bloc...

2 Websites, 1 ASP.NET Application and ASP.NET Scheduler

Hi guys, I want to build a scheduler, and was thinking of doing it with a scheduler similar to the one once used here on stackoverflow. Currently, in IIS I have two websites pointing to the same application, to represent the same website with two different domains (i.e. www.xyz.com.au and www.xyz.co.nz). My question is will the schedul...

Can I set a timer on a Java Swing JDialog box to close after a number of milliseconds

Hi is it possible to create a Java Swing JDialog box (or an alternative Swing object type), that I can use to alert the user of a certain event and then automatically close the dialog after a delay; without the user having to close the dialog? ...

Windows Server 2008 scheduler issue and cross domain permission issue

I am using windows server 2008 + Plesk to setup website. I have certain program want to install in subfolder. eg: trial.blablabla.com/username1 eg: trial.blablabla.com/username2 eg: trial.blablabla.com/username5 So everytime when there's a new installation, I will insert it into database and it as pending status. Then every minute, .v...

vbscript return empty data

Hi there, I am using vbscript .vbs in windows scheduler. Sample code: objWinHttp.Open "POST", http://bla.com/blabla.asp, false objWinHttp.Send CallHTTP= objWinHttp.ResponseText strRESP= CallHTTP(strURL) WScript.Echo "after doInstallNewSite: " & strRESP Problem: blabla.asp is handling a task that need around 1-2 minute to complete...

Date fields in MySQL, finding all rows that don't overlap and returning only the difference

So this was one of my very first questions here, but I have a slight variation: So I have two people whose schedules are in a database. The schedules simply record the start time, end time, and description of the various events/appointments for both users. PersonA wants to trade appointments with PersonB. I want a MySQL query that will...