Sometime you may have a requirement to tell your client what type of authentication scheme you are applying on your WCF REST service. In this post I will show you, “How could you expose authentication scheme information as part of your service? “ To start with let us create Self Hosted WCF REST Service. BesidesContinueContinue reading “Getting current Authentication information on WCF REST Service”
Tag Archives: WCF
AutoCompleteBox in Silverlight 4.0 with DataSource from SQL Server
In my last article AutoCompleteBox in Silverlight 4.0 , Data Source for Autocomplete Box was an IEnumerable list. In this post we will work with a column value of table from SQL Server as Data Source for Autocomplete Box. Our approach would be 1. Create WCF Service 2. Exposed data 3. Consume in Silverlight 4.ContinueContinue reading “AutoCompleteBox in Silverlight 4.0 with DataSource from SQL Server”
Uploading File to server from ASP.Net client using WCF REST Service
Very often I see one question flooding in all forums, “How to upload a File using WCF REST Service? “, so I thought let me write a post on the same. Essentially, there is nothing specific to do to upload file, but the below steps 1. Create a service with Post operation 2. Pass fileContinueContinue reading “Uploading File to server from ASP.Net client using WCF REST Service”