|
|
-
Jun 30 2011 12:46PM
| himavejella
| blog
Introduction As all of us know if something went wrong in the Silverlight application that is consuming WCF, how much painful it is to investigate the problem. Debugging only help to certain level, as it do not always give the exact error message. It sucks and it eats considerable amount of time to...
|
-
Apr 1 2011 5:16AM
| dhananjaykumar
| blog
In this article we will explore, how could we use Stored Procedure with WCF Data Service?
You can read Introduction to WCF Data service and ODATA here
To use Stored Procedure, at time of creation of Data Model, select Stored Procedure as part of Data Model.
Now open EDMX file and right clic...
|
-
Feb 1 2011 7:29AM
| dhananjaykumar
| blog
Objective
This article will explain step to step explanation of, how to create a REST based service and how to consume that in a managed client.
Step 1
Create a new project as WCF Service application type.
Step 2
Delete all the default code from IService.cs and Service.svc.cs
Now open...
|
-
Jan 30 2011 12:00AM
| robertdennyson
| quiz
How do you invoke PowerShell scripts with WCF?
|
-
Jan 28 2011 2:28AM
| dhananjaykumar
| blog
For a normal developer like me, had a great challenge working with WCF 3.x was configuration of End Points in config file. Developer had to add endpoints to setup a WCF service. In WCF 4, Defualt End Point is associated with the service, if we don’t configure any WCF endpoint.
To see how D...
|
-
Jan 25 2011 2:18AM
| dhananjaykumar
| blog
Each time when we want to consume a WCF service, we need to create proxy at client side. To create proxy, service must expose metadata endpoint.
Normally
We create a WCF service
Expose metadata endpoint
Add service reference at client side to create the proxy.
Using the proxy calls the serv...
|
-
Dec 22 2010 1:55PM
| Jalpesh07
| blog
Recently I was getting error when I am calling web service using Java script. I searching on net and debugging I have found following things.
Any web service support three kinds of protocol HttpGet,HttpPost and SOAP. In framework 1.0 it was enabled by default but after 1.0 framework it will not be...
|