Welcome to David Sandor Sign in | Join | Help

Browse by Tags

All Tags » .NET 3.5   (RSS)
Resolved: If the server is running in a user account, specify the account's UserPrincipalName as the identity in the EndpointAddress ...
I received the following error when connecting to a WCF service hosted on a remote server: http:// SERVERNAME :8200/DevSQL.ReplicatorService/Signaler/ System.ServiceModel.Security.SecurityNegotiationException: SOAP security negotiation with ' http:// Read More...
Resolved: Event Type clr20r3, .NET Runtime Error, Event ID 5000
Funky error received: Windows Service failed to start and logged an Event ID 5000 in the Application Event log with the following details: EventType clr20r3, P1 devsql.replicatorservice.exe, P2 1.0.3293.22912, P3 49639851, P4 devsql.replicatorservice, Read More...
SOLVED: ClickOnce Deployment and IIS 7 does not work.
If you publish a .NET application to an IIS 7 server click once deployment fails with HTTP 404 errors on .manifest, .application, and .deploy files. After googling I found a blog article that went through a bunch of horribly poor suggestions involving Read More...
Solved: Visual Studio 2008 SP1 Crash
I have a fresh install of Vista Business x64 with a clean install of Visual Studio 2008 SP1.  I updated my Telerik R.A.D. Controls Winforms from an older 2007 version to 2008 Q2 SP1.  After which (and I do not fault Telerik for this as it is Read More...
Solved: How to install Team Foundation Server 2008 on Windows Server 2008 with SQL Server 2008
I Googled and Googled and found no meaningful results on this.. just a bunch of people who plagiarized other people's blog postings.  So the nutshell on this is: Slipstream the SP1 into the TFS 2008 installation. What you need: TFS 2008 TFS 2008 Read More...
Microsoft Visual Studio 2008 Service Pack 1 ( SP1 ) Released
BEFORE RUNNING THE SP 1 install you need to run the Visual Studio 2008 Hotfix Cleanup Utility. The HFCU Utility can be found here: http://code.msdn.microsoft.com/RemoveKB944899 The service pack 1 for Visual Studio 2008 can be found here: http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E&displaylang=en Read More...
LINQ to SQL Visual Object Designer O/R Mapper
Building data objects in Visual Studio 2008 is really nice. Having been a . netTiers veteran (and contributor) I have appreciated O/R Mapping tools for some time now. I must say that the new Visual Designer is pretty neat. I am working on a quick WPF Read More...
Using a strongly typed class as a return value in WCF.
Once again working with WCF services from my Silverlight application. This time I upgraded a method on my WCF service to return a generic list of a strongly typed class. [ServiceContract] public interface IOpenOrders { [OperationContract] List<OrderData> Read More...
Content Type text/xml; charset=utf-8 was not supported by service [insert service url here]. The client and service bindings may be mismatched.
.style1 { font-family: Calibri; } p { font-family: Calibri; } .style2 { background-color: #FFFF00; } .style4 { font-size: medium; } Working on some WCF code for a Silverlight application I stumbled on this error message: Content Type text/xml; charset=utf-8 Read More...
How do I force an empty element to show up when serializing a null property to XML or in a WebService SOAP message?
Wierd title? I wanted to include everything on that. So here is the dilema: A client wants to consume one of my web services but they are string parsing instead of using the XML DOM to read the XML response. Because of the old school way of parsing data Read More...
Where is my extension method?
A little note to the new developer that is just getting into writing Extension Methods in .NET 3.5. Your extensions will not show up until you compile your static classes. This should be obvious to most but the Visual Studio 2008 IDE does not precompile Read More...
Why is .NET 3.5 not listed in the ASP.NET tab in the IIS MMC Snap-In?
I keep seeing this question posted and I anticipate seeing the question pop up more often. The short answer is: There is no .NET 3.5 application layer for the IIS application context configuration tab. You should set the Framework version to .NET 2.0. Read More...