Search code examples
c#wcf.net-3.5.net-2.0asmx

Call .Net 3.5 WCF service from .Net 2.0 Standard ASMX Web Service Client


I created a service that is hosted on a server that has .Net 3.5 installed and I need to call this service from a client that only has .Net 2.0 installed.

Is there a way I can do this?


Solution

  • If your WCF service exposes an endpoint using basicHttpBinding, then it should be possible for the .NET 2.0 client to consume it. As Marc said, "no problem".