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
 

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

Back
Top