0

I have a web-application and a running Service. The Service starts an exe at a certain time. I want to write the start time into a textbox and than it should be passed to the service. Is this possible and if it is how? Do I have to stop the service to pass the information?

Mr. Paul
  • 103
  • 3
  • 16
  • Depends on how/where you are running the two things. But you'd need some kind of message broker in between to notify each other. – Yahya Nov 11 '15 at 14:28
  • Both runs on the same server. – Mr. Paul Nov 17 '15 at 06:47
  • You'd need to look at one of the queueing system. Like: http://stackoverflow.com/questions/11076790/the-bare-minimum-needed-to-write-a-msmq-sample-application. This queueing system will help you communicate between the two systems – Yahya Nov 17 '15 at 09:50

1 Answers1

0

It is possible.
You have to use a wcf Service for the inter process communication.
The Service does not Need to stop.

I recommend that you take a look at wcf and do some tutorials on asp.net. In most asp.net tutorials they Show how you can attach textboxes to a model.

Mr. Paul
  • 103
  • 3
  • 16