Pass Data Between Windows Service and ASP.NET page

P

pitachu

Is there a way for a Windows Service to talk to an ASP.NET page (via
HTTP to localhost perhaps)? I'm looking to utilize the cache and
multithreading available in ASP.NET, but I'm not nessarily looking into
make a webpage.
 
M

Michael Nemtsev

Hello (e-mail address removed),

What exactly you are trying to do?
Is there a way for a Windows Service to talk to an ASP.NET page (via
HTTP to localhost perhaps)? I'm looking to utilize the cache and
multithreading available in ASP.NET, but I'm not nessarily looking
into make a webpage.
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
P

pitachu

I would like the service to be a listener and for the ASP.NET page to
do the processing and maintaining state. Is there a way for the windows
service to talk to this page through HTTP as if a browser is connecting?
 
R

Rune B

I would like the service to be a listener and for the ASP.NET page to
do the processing and maintaining state. Is there a way for the windows
service to talk to this page through HTTP as if a browser is connecting?

A WebService (running in the same application) would most likely be the
favorable choice, but if it has to be with a browser-like behavior, try the
System.Net.WebClient.

R-)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top