|
|
|
|
|
|
|
May 2005 - Musings from Gudge
-
Via Steve . Apparently this is my pre-1985 Video Game Character. The bit about the inside of buildings is spot on... I am a Gauntlet Adventurer . I strive to improve my living conditions by hoarding gold, food, and sometimes keys and potions. I love adventure...
-
I notice that the Indigo and Avalon Beta 1 RC is available on MSDN. Run, don't walk, and download it!
-
A fellow Indigette, Dan Roth, pointed out to me via e-mail and a comment on my earlier blog entry , that I'd neglected to explain *why* the service level message logs contain SOAP headers that were not actually transmitted by the client. This entry attempts...
-
I've noticed some problems with posting code samples here from my Infopath form. I'm cutting and pasting code from my editor into the form and it's not coming out quite right; spaces seem to go missing for some reason. In a couple of cases I've deleted...
-
Here is the code based version of the Simple service . Like the client , this one uses no config at all; using System; using System.ServiceModel; namespace Gudge.Samples.SimpleCode { [ ServiceContract ] interface ISimple { [ OperationContract ] string...
-
Further to my earlier entry , here is the code equivalent for the client. This one uses no config whatsoever; using System; using System.ServiceModel; namespace Gudge.Samples.SimpleCode { [ ServiceContract ] interface ISimple { [ OperationContract ] string...
-
I was somewhat confused by some of the trace messages I was getting back from a simple Indigo service and client I've been playing with so I tried various combinations of config attribute values to see what results I'd get. I using the diagnostics element...
-
Following on from my previous post , here's the client code; using System;
using System.ServiceModel; namespace Gudge.Samples { [ServiceContract] public interface ISimple { [OperationContract] string Ping ( string text ); } public interface ISimpleChannel...
-
I've recently got a new laptop and have finally got around to getting a recent build of Indigo installed. I wrote the simplest client and service I could using as little code and config as I could get away with, with as little code being the high-order...
|
|
|
|
|
|