I am new to WCF and I am trying to understand how Services work now.
My question is simple:
I have an Interface: ICalculator
I have 2 implementations: StandardCalculator : ICalculator and FunkyCalculator : ICalculator
And I would like to know how I can expose this (code wise) so that the URL's are like this:
hxxp://localhost:8000/Calculator/Simple
hxxp://localhost:8000/Calculator/Funky
If this is not possible to do I would like to understand why.