Pablo M. Cibraro (aka Cibrax)

My thoughts on Web Services and .NET development

News

Pablo Cibraro's VisualCV

Blogs

Personal

Programming

Browse by Tags

All Tags » WCF (RSS)
WCF extensibility guide
The first chapter of the WCF extensibility guide that Jesus and I have been working on during the last few months went live in MSDN this weekend. You can find it here, http://msdn.microsoft.com/en-us/library/ee672186.aspx   The first chapter gives...
Posted: Oct 18 2009, 10:01 AM by cibrax | with 2 comment(s)
Filed under: ,
Client Configuration in WCF 4.0
As Dr Nick announced in this post , WCF 4.0 will ship with a new feature to configure a client channel from a configuration source other than the traditional section in the application configuration file (I discussed a workaround for doing the same thing...
Posted: Sep 08 2009, 11:14 AM by cibrax | with 2 comment(s)
Filed under: ,
A bad idea, EF Entities over WCF Part II
In the previous post, I discussed how bad was to expose EF entities directly as data contracts from a perspective of “interoperability”. This also revealed a lot of internal implementation details about EF that the client applications should not worry...
Disposing a WCF Proxy
A common misconception is to think that a WCF proxy can be used and disposed as any other regular class that implements IDisposable. However, the IDisposable implementation in the WCF client channel is not like any other, and it can throws exceptions...
Posted: Jun 26 2009, 09:39 AM by cibrax | with 2 comment(s)
Filed under: ,
A Bad Idea, EF Entities over WCF
Do you want to see something very ugly ?. Try to send a complete EF entity directly as a data contract over the wire with WCF, <Order xmlns:i=" http://www.w3.org/2001/XMLSchema-instance " z:Id="i1" xmlns:z=" http://schemas.microsoft.com/2003/10/Serialization...
What I like about OpenRasta
After having playing with the current bits of OpenRasta (OR) for a while, I am now able to see great advantages in using this framework over other existing frameworks for building RESTful services such as WCF or the ASP.NET MVC. Let’s explore some of...
Posted: May 29 2009, 03:10 PM by cibrax | with 2 comment(s)
Filed under: , , ,
Mutual Certificate Authentication for WCF REST services
When Mutual Certificate Authentication is configured for REST services, both, the client and the service perform identity verification or authentication through X509 certificates. The client authenticates the service during the initial SSL handshake,...
Sharing the security context between ASP.NET and WCF REST Services
It is very common for WCF services that work as Ajax callbacks and ASP.NET pages that live in the same web application to share a common security context for the authenticated user. However, in order to make this happens, the ASP.NET compatibility mode...
Support for Form-UrlEncoded data in WCF Rest services
Some people have been asking around in the MSDN forums or stackoverflow about a possible way to pass form-urlencoded data to an existing WCF REST service. Although this is not a core feature in WCF from my point view, there is still some support for addressing...
Streaming large content from a WCF RESTFul service
Streaming large content such as media content, images or files is a common scenario for RESTful services. If a scenario like this is not well addressed or implemented on the service side, there is a high risk of consuming server resources like memory...
More Posts Next page »