Close

MSDN Webcast: geekSpeak: REST and Windows Communication Foundation 3.5 with Adnan Masood (Level 200)

I'll be doing a webcast on 3rd September on geekspeak. The topic is "REST and Windows Communication Foundation 3.5". Details are as follows. MSDN Webcast: geekSpeak: REST and Windows Communication Foundation 3.5 with Adnan Masood (Level 200)  Audience(s):     Developer.   Duration:     60 MinutesStart Date:     Wednesday, September 03, 2008 12:00 PM Pacific Time (US…

Share

REST and WCF 3.5 Talk Slides and Code Samples

On Thursday July 17th, I presented "RESTFul Web Services – UriTemplates and REST support with WCF 3.5". to SoCal.NET architecture group (http://www.socaldotnetarchitecture.org/). It was well recieved and I got good feedback. The code samples and slides are as follows. REST using WCF 3.5.pdf - Slides in PDF (529.21 KB) REST using WCF 3.5.pptx - Slides…

Share

Https with BasicHTTPBinding - Note to Self

So if you are looking to implement SSL using basicHttpBinding for your WCF service, look no further. Here is your config file settings The modified basicHttpBindinging to allow security mode = Transport <bindings>            <basicHttpBinding>                <binding name="defaultBasicHttpBinding">                    <security mode="Transport">                        <transport clientCredentialType="None"/>       …

Share

Code Camp Presentation Downloads

Following  are the links to my talks from the SoCal Rock and Roll Code Camp in UCSD Extension Campus, San Diego. Using ASP.NET MVC  to build a blogging engine in 60 minutes or less. MVC is a framework methodology that divides an application's implementation into three component roles: models, views, and controllers. ASP.NET now has…

Share

Getting Rid of TempUri in WCF

Everyone of has seen it; the default namespace TempUri reference in our otherwise neatly published WSDL, looks like an out of place not-so-thought-out part of your otherwise ironclad contract. Hence the question arises, how to get rid of it and put your company’s corresponding namespace in there. In the asmx services, it was rather easy…

Share

WCF Articles on Code Project

I’ve recently completed the following two articles for The Code Project. These are mainly based on my CalState Fullerton SoCal Code Camp talks. Exploring WCF 3.5 Tools - WcfSvcHost and WcfTestClientDisucssing use of WCFSvcHost and WcfTestClient for Service hosting and testing. Publishing RSS and ATOM Feeds using WCF 3.5 Syndication Libraries This article focuses on…

Share