0

I am attempting to generate a proxy using the SvcUtil.exe tool in VS2010 Tools, I am using the following command

"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\SvcUtil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/Service" 

When I enter this comman in the directory of the client I am attempting generate the proxy for, I get the following error from the comman tool.

The filename,directory of volumn label syntax is incorrect 

I am not quite sure why it is telling me this.

Is there anything obvious that I am missing?

1 Answer 1

3

You should close the quotes after svcutil.exe, instead of at the end of the line - the command prompt is not finding a program with that name in your line.

"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\SvcUtil.exe" /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/Service 
Sign up to request clarification or add additional context in comments.

1 Comment

Awesome! This took care of it, I need to work on my command line skills apparently =)

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.