5

I have some clients calling my asmx service and I figure out to change my asmx to a Wcf service. How can my asmx clients call to my Wcf service without modify the client application?

Maybe just a few changes in the config file...

I can't expect than they compile their applications.

Nate
  • 30,286
  • 23
  • 113
  • 184
neo
  • 83
  • 7
  • Answered on StackOverflow Link: [here](http://stackoverflow.com/questions/1502298/how-much-effort-is-required-to-convert-an-asmx-to-wcf-web-service) – Saurabh R S Jun 13 '12 at 17:37
  • Please see the reply at the following link. http://stackoverflow.com/a/30482561/4944540 – rahul kumar May 27 '15 at 15:02

2 Answers2

1

The following article illustrates a detailed guide on how you could achieve that.

Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
0

You need to support basicHttpBinding in your WCF server and provide new URL to your basicHttpBinding endpoint to callers.

Callers only need to change URL they use.

Everything should happen behind the scene for them.

Dmitry Harnitski
  • 5,838
  • 1
  • 28
  • 43