consuming windows service 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 said:
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...

Anything that runs in a browser should be sandboxed and therefore have
absolutely no access to anything outside the browser. So AFAIk this is a
no-go.

Aside from that, CPUID's are a thing of the past. The CPU either doesn't
have one or it can be disabled. So if you're thinking of using that for
some sort of identification or licensing, look for something else.
 
Back
Top