views:

166

answers:

2

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

+4  A: 

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

Darin Dimitrov
Thanks for that, helped a great deal!
anonym0use
A: 

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.

Dav Evans