Welcome to

Magenic Technologies Community Blog

Sign in | Join | Help

Browse by Tags

All Tags » WCF   (RSS)

@ Code Camp IV

Sitting in Neil Iverson's Powershell presentation right now; I need to learn A LOT more about this! My presentation went well (hopefully the attendees agree!). Here is a link to my deck and code . It will also be available at the http://www.twincitiescodecamp.com
Posted by jeffk | 0 Comments

CODE CAMP! CODE CAMP! CODE CAMP!

Code Camp Twin Cities 4 is coming to a favorite Twin Cities suburb near you! Ok, seriously, the event is sold out (which is funny as it is free J ) but sold out *is* sold out! I'm taking out 3 minutes of my preparation time to blog about it (no, my presentation
Posted by jeffk | 0 Comments

Twin Cities Code Camp 4

Hey All! Spring in Minnesota is a GREAT thing. To celebrate the season, it is time for another Code Camp ! Thanks to the efforts of Mr. Jason Bock here and here the next Twin Cities Code Camp happens on April 5, 2008 at the New Horizons Facility in Edina,
Posted by jeffk | 0 Comments
Filed under: , , ,

Visual Studio 2008/.NET 3.5 installation bug

I'm thrilled that .NET 3.5 and VS.NET 2008 shipped late 2007. I decided to install these shiny new toys on my work computer this morning. In the meantime, all of the WCF services on my local machine (Windows Server 2003 SP2) mysteriously stopped working.
Posted by jeffk | 0 Comments

More web service versioning info

Courtesy of LOBOMINATOR from MSDN forums....more links and posts on service versioning... :), plus i'm in a blogging state of mind tonight...! https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1989101&SiteID=1 <quote> Service Versioning
Posted by jeffk | 0 Comments
Filed under: , ,

WCF Versioning Flowchart

I ran across this post tonight from Craig McMurtry (author of Microsoft Windows Communication Foundations: Hands-on ) with a flowchart showing how to version WCF services. http://blogs.msdn.com/craigmcmurtry/archive/2006/07/23/676104.aspx Thank you Craig
Posted by jeffk | 0 Comments
Filed under: , ,

ASMX test page & remote machine access

Even though I love WCF, ASMX is not going away anytime soon. One of the things I like about ASMX is the auto-generated test web page (if you have simple types of course, not messages). At my current client, we develop a message based endpoint and also
Posted by jeffk | 0 Comments
Filed under: , ,

Visual Studio 2008 Beta 2 – WCF test client error

I attended the Microsoft Partner Event "OnRamp240 Microsoft(r) Visual Studio(r) 2008" this morning at the local Microsoft office in Bloomington. Local evangelist Mike Benkovich presented the material. One of the cool new VS.NET 2008 features
Posted by jeffk | 0 Comments
Filed under: , ,

Preserving ASMX web service contracts in WCF

Recently, I had an interesting experience regarding trying to preserve the contents of an ASMX/WSE3 web service contract (using C#, and Xml Serialization attributes) in a WCF service. The mantra of SOAP (and COM/DCOM) is to define a contract as your abstractraction,
Posted by jeffk | 0 Comments
Filed under: ,

Code Camp 2 - Complete

The 2 nd Twin Cities Code Camp is now complete. I have not heard the final attendee count, but we had a great turnout. I got to see lots of former/current coworkers and friends. It was an excellent time! Mork and I did the talk on the Web Service Software
Posted by jeffk | 0 Comments
Filed under: , ,

Attachment(s): WebServiceSoftwareFactory.zip

Twin Cities Code Camp 2

Jason Bock has organizied the 2nd Twin Cities Code Camp coming up this Saturday, April 28, 2007 at New Horizons in Edina. Here are links to registration , and of course the schedule . I am doing a co-presentation with my good friend Dan Mork on the Web
Posted by jeffk | 0 Comments
Filed under: , ,

NUnit testing in WCF - ExpectedException<T>

One thing I noticed while testing a WCF service endpoint via NUnit (v 2.2.8) is that if you mark a test with the ExpectedException attribute like this: [Test] [ExpectedException(typeof(FaultException))] public void MyFancyWCFTest() { //some high-powered
Posted by jeffk | 0 Comments
Filed under: ,