English 中文(简体)
Deploying a TCP based WCF service, that s hosted in a Windows service
原标题:

I ve finished writing a WCF service that uses TCP. It is meant to run on a Windows 2003 Server, which doesn t have WAS available, so I ve written a Windows service to host my WCF service. It works great on my development machine.

Now, how do I get these two services onto the Windows 2003 Server? Do I just copy the WCF service there and that s it? I would think it would probably be best if I put it into some specific location, but where would that be? And then the hosting Windows service, how do I deploy that to the Windows 2003 Server?

问题回答

You should have a service deployment project that you ve used in the Dev area. It will be the same technique.

Example of creating a service in c# from codeproject

put it in program filesYour Service





相关问题
windows service : configuration UI implementation options

I have a simple windows service, that might need to be configured on-the-fly (a COM port to listen to). I have done the UI as a console app that connects to the windows service through WCF, it works ...

Installing a Windows Service as a user

I m currently in the process of creating a Windows service application which will monitor changes to certain keys made in the HKEY_USERS registry. The way I do this is by collecting the SID of the ...

Writing application for both Unix and Windows

I ll write a program for Interactive UNIX (http://en.wikipedia.org/wiki/INTERACTIVE_UNIX). But in a year it will be ported to Windows. I ll write it in ANSI C and/or SH-script. When it runs on Windows ...

Windows service runs file locally but not on server

I created a simple Windows service in dot net which runs a file. When I run the service locally I see the file running in the task manager just fine. However, when I run the service on the server it ...

热门标签