■ WCF 프록시를 생성하는 방법을 보여준다.
1. .wsdl 및 .xsd 파일 생성하기
▶ 실행 명령
1 2 3 |
svcutil.exe HelloWorldService.dll |
2. 프록시 파일 생성하기
▶ 실행 명령
1 2 3 |
svcutil.exe *.wsdl *.xsd /language:C# /out:Proxy.cs |
3. WSDL URL을 사용해 프록시 파일 생성하기
▶ 실행 명령
1 2 3 |
svcutil.exe http://localhost/wcf/example/helloworldservice?wsdl /language:C# /exit:Proxy.cs |