It works,
In my case, for some reason I have SDK v6.0A and powershell installed. Under start menu I have
NO CMD shell, and I have to use window standard cmd.
It took me sometimes to figure out how to generate the proxy file using
standard cmd & svcutil.
Inside cmd, I have to navigate to the SDK folder bin by using:
cd C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin
in this directory you can find svcutil.exe, and you can run:
svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/ServiceModelSamples/service
after running this command, the output file is located
right in the recent folder.
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin
I have to go there and copy it to my Client project and add to the solution later.
This all sound logical to me, because I haven't seen how this svcutil knows where my client project is located.
Just in case someone need to refer
JINN