Browse by Tags

28 augustus 2008
Workaround for missing "Edit WCF Configuration" menu option in Visual Studio
Sometimes when you have a clean install of Visual Studio 2005 or 2008 the context menu item "Edit WCF Configuration" for a app.config or web.config will not show. The picture above does show the menu item I'm talking about, but you may find that it is not there. Help is at hand: there is... Read More...
22 maart 2008
Combining AJAX and WCF 2.0
The WCF "Orcas" release (the WCF from .NET Framework 3.5 aka WCF 2.0) makes it so much easier to use your WCF service in conjunction with ASP.NET AJAX (formerly known as 'Atlas'). Before Orcas you would build a AJAX enabled (web) service by adding the [ScriptService] attribute to the service... Read More...
12 december 2006
Are you my type?
The 15th episode of the Dutch .NET Magazine has dropped in the mailbox at Class-A just a moment ago. Inside are many great articles. There is also an article (I dare not say "one of them") written by Stefan Onderstal from Qurius and myself. The article focusses on the problem of the default use of the... Read More...
22 november 2006
Cheap skate way to do exception shielding in ASP.NET web services
You read it right. There is a very cheap way to shield exception information from an ASP.NET web service. Mind you, this is available only from ASP.NET 2.0 (and upwards presumably). So, what is exception shielding for web services? Preventing potentially valuable exception information from leaking to... Read More...
26 juli 2006
Calling webservices from client-side Atlas: part 2 of 2
Part 1 left us able to call web services that are local. In part 2 we will take a look at web services that are remote to our own website that hosts the Atlas enabled page. Seems like a trivial thing to do. I mean, it’s “just” a soap call over HTTP, right? The challenge lies in the... Read More...
24 juli 2006
Fixing the Shared Type Schema Importer Extension for nullable value types
When you add a Web Reference to your project, Visual Studio will also import all schema types defined in the WSDL’s schema section. You can create a schema importer extension (SIE) to influence the way the XSD schema types are mapped to your CLR types. There is a very nice article by Jelle Druyts... Read More...
20 juli 2006
Calling webservices from client-side Atlas: part 1 of 2
The March and May 2006 CTP’s of Atlas introduced two formal ways to call web services from a web browser. The difference is in the location of the web services. Local web services Remote or external web services Atlas makes it really easy to call web services when they are local, i.e. reside in... Read More...