At Tampa Code Camp 2009 I did 3 sessions, one on Linq 4.0, one on WCF 4.0, and an impromptu discussion on TDD. Here are the presentations on Linq 4.0 and WCF 4.0.
WCF the good, the bad, the ugly – PascoUserGroup.Net Presentation
Did this training session for my user group on July 23, 2009
PascoUserGroup.NET meeting this week – 7/23
Will be giving a session on “WCF the good, the bad, the ugly”.
Using wsDualHttpBinding and recieve “HTTP could not register URL http://+:8000/. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details).” Error on the Web Client
This error is cause by the the clientBaseAddress URI not having elevated premission to create the listener port in IIS.
To fix this issue by using identity impersonation and add/update the follow web.config keys:
<identity impersonate="true" />
Then you can configure impersonation any way you would like.