I just created a WCF service with this MSDN tutorial.
- from within Visual studio I can CTRL-F5 the service so it is running
- then I can start my Console Application Client and consume the service no problem
Now I want to start my service OUTSIDE visual studio and have various clients consume it.
But when I go to the command line and execute this file ../bin/Debug/testService.exe, I get an exception: "Input has the wrong format".
I get the same error when I publish the service and start the published .exe file.
What am I missing here? Do I need to send some kind of parameter that Visual Studio is sending to make it run?
How can I run my WCF service externally outside Visual Studio?