Link to home
Start Free TrialLog in
Avatar of WorknHardr
WorknHardr

asked on

Need WCF Host Learning Project

I have found many VS solutions on the Internet which contain several projects referencing other class library projects.
I would like to find a solution containing a WFC Host console Project which runs like a real web host. Then I can add a web project to query it. Make any sense?
Avatar of jorge_toriz
jorge_toriz
Flag of Mexico image

Do you want a host console project that expose a service through a binding that works with http?
ASKER CERTIFIED SOLUTION
Avatar of jorge_toriz
jorge_toriz
Flag of Mexico image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of WorknHardr
WorknHardr

ASKER

>>Do you want a host console project that expose a service through a binding that works with http?

Yes! I need the http access to test REST...
danka
Well, if you want to use REST you will need to change the binding to webHttpBinding and the host must be a WebServiceHost, this class is located in System.ServiceModel.Web assembly
Thanks again