2
votes

I have created a basic WCF service in IIS. I am aware that this should be developed in .net 3.0 and .net 3.5. My question is this. Can a client running .net 2.0 access and consume the WCF service?

Cheers

2

2 Answers

4
votes

Yes, if the service exposes an endoint with basicHttpBinding. Although there are some issues you should be aware of.

0
votes

as darin said you can access the service from 2.0 only if your wcf is exposed using the basicHttpBinding. This binding will expose SOAP that is compatible with WS-BasicProfile 1.1 which is the same as the older ASMX services.