What you want to see on DotNetFunda.com ?
Go to DotNetFunda.com
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 30660 |  Welcome, Guest!   Register  Login
Home > Articles > WCF > SSl with self hosted WCf Services

SSl with self hosted WCf Services

Article posted by Anup1252000 on 11/25/2009 | Views: 11018 | Category: WCF | Level: Beginner red flag


In this article, we are going to see how to use Transport Security with Self hosting by using SSL.

Introduction

       In this article,we are going to see how to use Transport security with Self Hosting by using SSL. Please Refer this link http://msdn.microsoft.com/en-us/library/ms733791.aspx. This link contains information about how to set SSl for Self hosting.

Lets go through this application step by step

Step1:


      Open VS 2008>New Project>Console Application>Give the name> Select c# as a programming language.

Step2:

      Now give System.ServiceModel reference to the console application project.

Step3:

      Now,lets write Service Contract,operation contract and so on in our service application.

     

I am setting the port to 8000. your url format should be like this https://computername:port no/service name


Step4:

        Now lets config the application configuration file(app.config). For configuring app.config, i am using a tool called WCF Service Configuration Editor. Please refer this link http://msdn.microsoft.com/en-us/library/ms732009.aspx. It contains information about WCF Service Configuration Editor.


         



Step5:

        Now check whether your application is running properly. If any errors fix those. 


Step6:

        Now, Lets create the client application. give reference to System.ServiceModel. lets use a tool called Svcutil.exe to generate the proxy. open VS cmd prompt> type in as svcutil /out:proxy.cs /config:app.config "https://computer name:8000/service" . It will automatically generate proxy.cs and app.config in the specific location. Copy those files and pate it into our client app. 


Step7:
        Now write these lines in the program.cs file





Step8:

         Now Lets run this application


Conclusion
    I hope you people like this article.

If you like this article, subscribe to our RSS Feed. You can also subscribe via email to our Interview Questions, Codes and Forums section.

Page copy protected against web site content infringement by Copyscape
Found interesting? Add this to:



Please Sign In to vote for this post.

About anup hosur

Experience:2 year(s)
Home page:
Member since:Saturday, August 01, 2009
Level:Starter
Status: [Member]
Biography:
>> Write Response - Respond to this post and get points
Related Posts

In this article you are going to see how to use Message Queuing in WCF.

DataContract will come under namespace System.Runtime.Serialization. During design time, DataContract Attribute is used to indicate which class should be represented as XSD. DataMember Attribute indicates which class member to be used in external representation.

Many times we would like to monitor events of WCF application in production environment. We would like to monitor events like errors, security audits, performance etc. This can be achieved by extending the ASP.NET health monitoring system in WCF. The health monitoring system is also termed as instrumentation.

This post teaches you how can you unleash the power of WCF and JSON. Complete walkthrough with sample code as download

This article will explain creation of custom binding in WCF services.

More ...
About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/22/2013 3:19:39 AM