I apologize if this is the wrong forum for this question ahead of time.
I have done some C# web coding and some C# app coding, but I am about to start a project with some functionality I have never attempted before, and I could really use some pointers.
I have a web application that moves code from various machines. Previously this code also was tied to Source Save but I want to divorce it from that for speed. Basically I want to make an scheduler application with a queue that receives data from the Web
App in the form of text variables or a Node object. The second app will then do all the interfacing with Source Save at a desired time.
So my questions are these:
1. How do i send data from the web application to the scheduler application (lets say a Windows Form for instance) assuming they are on the same machine. This is my biggest technical hurdle as I am not sure how .NET does this at all.
2. Layman question I know, but how do i fire off a scheduled event in a .NET app.
Porter99
0 Points
2 Posts
Sending data from a web application to a scheduler application?
Sep 16, 2007 07:10 AM|LINK
I apologize if this is the wrong forum for this question ahead of time.
I have done some C# web coding and some C# app coding, but I am about to start a project with some functionality I have never attempted before, and I could really use some pointers.
I have a web application that moves code from various machines. Previously this code also was tied to Source Save but I want to divorce it from that for speed. Basically I want to make an scheduler application with a queue that receives data from the Web App in the form of text variables or a Node object. The second app will then do all the interfacing with Source Save at a desired time.
So my questions are these:
1. How do i send data from the web application to the scheduler application (lets say a Windows Form for instance) assuming they are on the same machine. This is my biggest technical hurdle as I am not sure how .NET does this at all.
2. Layman question I know, but how do i fire off a scheduled event in a .NET app.
Thank you very much in advance
jshepler
Participant
799 Points
176 Posts
Re: Sending data from a web application to a scheduler application?
Sep 17, 2007 04:00 AM|LINK
I would suggest a windows service (to run jobs) with a webservice "font-end" for clients to talk to.