Join Dotnetcodes DotnetCodes.com is online Discussion Forum for Software professionals . It lets you find friends around the world and Create professional network that share similar interests as you. Get help on ur projects by industry specialists. Also get answers to all ur technical/placement related querries.Get an edge over others.
Already MemberClick here to login
ASP.net MVC Interview Questions Answers Interview Questions
Serial Number in SSRS Articles
How to Print a Crystal Report direct to printer Articles
Get Started Developing for Android Apps with Eclipse Articles
Razor View Engine Interview Questions Answers Interview Questions
.Net framework 4.0 Interview Questions Answers Interview Questions
SQL server reporting services Interview Questions (SSRS) part 1 Articles
Whats New in ASP.NET 4.0 Part 2 Articles
Difference between Encapsulation and Abstraction Interview Questions
Explaining SDLC -System Development Life Cycle Articles
SPIRE PDF Library Articles
Infosys Interview Questions Interview Questions
Html5 interview questions and answers Interview Questions
Dynamic Menu using HTML List Tag and CSS in ASP.Net Articles
SharePoint 2010 interview Questions Answers Interview Questions
Submit Articles | More Articles..

How to create WCF proxy

Posted By: rakesh On:11/25/2010 10:22:39 PM in:Articles Category:WCF Hits:9141
In this article you learn how to create WCF proxy

There are different ways of creating WCF proxy :
  1. Adding service reference to a WCF service using Visual Studio
  2. Use SvcUtil.exe utility to create proxy
  3. Implementing ClientBase<T> Class

Adding service reference to a WCF service using Visual Studio

Right click on project in IDE , you will see three Add options as shown in the figure below :


Click on Add Service Reference option , you'll see the dialog box that is shown in Figure  :
















Once you've clicked OKin the dialog box, the add-in spawns SvcUtil.exe, generating the necessary proxy class and the required configuration file (or modifying it) and adding the necessary references to the project.
This is the way to create sync WCF service proxy
To create WCF service proxy in async way please follow below steps before clicking on OK :
Click on Advanced Button

















Click on Generate Asynchronous operation checkbox and then click on OK button
Using SVCUtil.exe
To generate manually, choose the CMD window by selecting Start | All Programs |Microsoft Windows SDK | CMD.The output files SVCUtil generates are the client proxy source code file and the application configuration file.
Command for producing both proxy class and configuration file
svcutil /config:app.config /out:"CalculatorService.cs" /language:csharp /n:*,SimpleClientWithProxy.CalculatorService "http://localhost/MathService/?CalculatorService.svc"
By default , svcutil generates only synchronous method signatures in proxy . 
Use option /async to generate both synchronous and asynchronous method signatures in proxy

Implementing ClientBase<T> Class
 Of all the methods , implementing ClientBase is best one because we need not create proxy class every time we make changes in service implementation.
public partial class SampleServiceClient : System.ServiceModel.ClientBase<ISampleService>, ISampleService
{
   
    public SampleServiceClient()
    {
    }
   
    public SampleServiceClient(string endpointConfigurationName) :
            base(endpointConfigurationName)
    {
    }
   
    public SampleServiceClient(string endpointConfigurationName, string remoteAddress) :
            base(endpointConfigurationName, remoteAddress)
    {
    }
   
    public SampleServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
            base(endpointConfigurationName, remoteAddress)
    {
    }
   
    public SampleServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
            base(binding, remoteAddress)
    {
    }
   
    public string SampleMethod(string msg)
    {
        return base.Channel.SampleMethod(msg);
    }
}

comments powered by Disqus
User Profile
Rakesh Sinha
Sr. Technical Lead
New Delhi , India
Email :You must Log In to access the contact details.
Latest Post from :rakesh
Hacked By 4xroix
View: 36 | Submitted on: 5/28/2019 9:07:35 PM
Which party you want to vote in Loksabha elections 2019?
View: 805 | Submitted on: 10/12/2018 5:59:06 PM
Response.Redirect vs Server.Transfer
View: 509 | Submitted on: 12/27/2015 2:26:38 PM
The test form is only available for requests from the local machine.
View: 777 | Submitted on: 11/3/2015 9:54:36 PM
Difference between web service WCF and Web API
View: 7985 | Submitted on: 10/28/2015 9:23:51 PM
Submit Articles | All Post of This User..


Advertise About Us Private Policy Terms of use
All rights reserved to dotnetcodes. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks.
Best viewed at 1024 x 768 resolution with Internet Explorer 5.0 or Mozila Firefox 3.5 or Google Crome and higher