Something very basic is probably missing. I created WCF 4.0 Recreation. It works without problems when I click the url from the browser and I get back to what I want.
But now I want to use this service from the mvc client application (it will also be used by other non.net platforms, so this is primarily a holiday service).
The problem is, how do I get a link to a service so that I can start using it in my C # code? With the new minimal WCF.net 4 config solution and without an interface for a service contract, I donβt know how to specify the mex endpoint. Ultimately, I do not want to have a mex endpoint in production, only during development. I would like to be able to indicate that all my services (about 10 in one application) have endpoints with one tiny piece of configuration that converts vs2010.config conversions when published.
source
share