Exposing Method

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hello.
How can I expose some mehods from my Windows Servise application as Web
Service and access thm from other application?
 
Windows services and Web services are quite different.
A windows service is an application that runs in the background, usually
started when the OS starts.
Web services are applications hosted in Internet Information Server, they
are activated when someone performs a request.
Web services run in the context of the web server process.

Since you have a windows service, you could use Remoting as interprocess
communication between your service and a web service.
You would have to create a seperate web application for the web service.

Chris
 
Back
Top