Browse by Tags

12 May 2008
.NET 3.5 and VS SP beta1 goodies
You can get them from here (VS) and here (.NET). I'm reading what's new on Brad Abrams post and I'm really digging the new features:) For instance, having the format option working with JS code is simply cool! Another cool thing: the ScriptManager is able to combine scripts so there's... Read More...
Filed under: , , , , , ,
26 March 2008
WCF again: the slow problem attacks again
On a different set of machines...I'm stumped. I mean, I though I'd nailed it with the proxy problem , but unfortunately there are still some machines where the 1st call is really really slow and removing the proxy isn't helping. I've even profiled the code but I still can't see where... Read More...
Filed under:
14 March 2008
WCF client calls slow
Today I was able to get back to my previous WCF client problem that I had described here . After looking at the old logs again, it was clear that the delay was on the server discoverability. The problem was that pinging was really fast, so it seemed like there was no client/server communication problem... Read More...
Filed under:
11 March 2008
WCF+Windows Forms = lots of problems with some services
In these last days I've been really busy finishing an application which consists of a Windows Forms app that gets its data from serveral WCF services (which, btw, use basic HTTP binding + SSL). Now, most of the services work really smoothly, but...there are 2 which are really making me go crazy:... Read More...
Filed under: ,
16 January 2008
Syndication and WCF
The latest release of .NET has added several interesting new things. One of those is support for Syndication. The System.ServiceModel.Web assembly has several classes that you can use to expose an ATOM or RSS feed. There's already a cool article on how to achieve this which has been published on... Read More...
Filed under: ,
12 June 2007
Calling a WCF service from your Silverlight application
Yesterday I talked about calling a traditional ASMX web service from your Silverlight app. Today, I'll be talking about WCF services. As I've said yesterday, in the current release, you only have tool support for getting a proxy to an ASMX web service (well, at least I've tried getting a... Read More...
Filed under: ,
22 May 2007
Calling your WCF web service from an ASP.NET AJAX page
The 3.5 beta version of the .NET platform lets us use JSON as the serialization format used by a web service call. The best of all is that this means that we can now call a web service from an ASP.NET AJAX page. To do this, you need to add some entries to your configuration file (on the server side)... Read More...
Filed under: ,
19 January 2007
Creating and using a test certificate with a WCF service
Since I've just lost a couple of hours trying to configure my WCF service to use SSL, I've though I'd put the steps here for self-reference. The first thing you need to do is to create a test certificate. Since I'm running Vista+IIS 7 (workstation), I've used makecert with something like this: makecert... Read More...
Filed under: