I just created a WCF service with this tutorial on MSDN .
- from Visual Studio I can use CTRL-F5 to make it work
- then I can start my console application client and not use the service without problems.
Now I want to start my visual studio OUTSIDE and use it with different clients.
But when I go to the command line and run this file .. /bin/Debug/testService.exe, I get an exception: "The input is in the wrong format ."
I get the same error when publishing a service and running a published .exe file.
What am I missing here? Do I need to send some parameter that Visual Studio sends in order to start it?
How to start an external WCF service outside of Visual Studio?
source share