I am new to WCF (Just a day or 2). I am planning to make an application having Client/Server
WCF Service (On Server hosted as windows service):
- Will invoke some commands using (Process.Start())
- Will send some information from my database
Questions:
- What WCF binding should I use? WsDualhttp or netTCP (Please elaborate if you can)
- Does WCF works with
SqlServer + EF 4.1
Server UI:
This will primarily will be used to
- Start ot stop the above service
- Change Address (localhost to [My Ip address]) and Port
- Show status of service (Running or dead)
Questions:
- How can I Change the address and port of my WCF service from this UI (it will be a different project and hence different config file).
Client App:
- Used to issue commands to WCF service.
- Get to know if the service is running or dead.
- Receive status messages for task completion or faults.
Also, can the windows installer be combined to install ServerUI + WCF Service + Windows service?