Hi, Sorry for the late reply, The Web service and WCF completely different from there features and way of implementation, deployment as well. We could say the web service is first version of the plat form independent , limited features. But WCF is new and enhanced more and more features compare to web service. Therefore, WCF always best and easy to implement as well. WCF like web service,It is very easy, <system.serviceModel>
<services>
<service name="Namespace.Project"
behaviorConfiguration="returnFaults">
<endpoint contract="WCFSample.IEchoContract"
binding="basicHttpBinding"/>
<endpoint contract="IMetadataExchange"
binding="mexHttpBinding" address="mex">
</endpoint>
</service>
</services>You should add binding as "basicHttpBinding". Thank you |