Monday, March 13, 2017

How do you create a proxy using svcutil?


  1. Open visual studio developer command prompt.
  2. Start your service and make sure it is up and running.
  3. Copy the URL of service .
  4. In visual studio command prompt type " svcutil [URL] /out:filename.cs /config:filename.config

This will generate two files in the local as mentioned above in the command prompt.

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...