Skip to main content

Manju Kumaravel

Blogs from this Author

How To: QueryStringConverter in WCF Using VB.Net

In this blog, we can discuss on how to use a QueryStringConverter class using a simple VB.Net application. 1. Lets start by defining the service contract method in the interface <OperationContract()> <WebGet(BodyStyle:=WebMessageBodyStyle.Bare,RequestFormat:=WebMessageFormat.Xml, ResponseFormat:=WebMessageFormat.Xml, UriTemplate:=”WCFService?SumA={SumA}”)> Function WCFservice(ByVal SumA() As Integer) As Integer 2. Once the interface is defined, we can implement the interface and add code […]

WCF Restful Service using VB.Net

This blog is intended to explain how to create a simple WCF Restful application using VB.Net What is WCF? Windows Communication Foundation (WCF) is a framework for building service oriented application. In this example, we are going to create a simple application which is used for adding two numbers where parameters are passed on URL […]