consuming windowservice in web application

  • Thread starter Thread starter Yoshitha
  • Start date Start date
Y

Yoshitha

HI
Hi

I am working on a ASP.Net web application. I have to build a windows service
which will have functions that returns Current Systems CPUID etc...
I need to consume this Windows service with my ASP.Net web application.

How can I do this? Is it possible to do so?

thanks in advance...

Yoshitha
 
Not sure whether your asking if a web service can retrieve the Current
Systems CPUID, or whether it can be consumed by the ASP.NET application?

The latter of which is fairly obvious, if a webservice is publised publicly,
anything can consume it and use that service.
This can also be available only on your network, to a website that has
access.
This is done by adding a web reference in visual studio.
Your web service will have to be running in IIS and have a page available to
the website.

Hope that helps
 
Back
Top