<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Y-blog </title><subtitle type="html">Y-blog : &lt;a href=http://www.yanivpessach.com&gt;Yaniv Pessach&lt;/a&gt; rabmles on web services</subtitle><id>http://blogs.msdn.com/yanivpessach/atom.xml</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/yanivpessach/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/yanivpessach/atom.xml" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2006-01-07T20:08:00Z</updated><entry><title>More exotic WCF channels</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/yanivpessach/archive/2006/01/21/515830.aspx" /><id>http://blogs.msdn.com/yanivpessach/archive/2006/01/21/515830.aspx</id><published>2006-01-22T01:45:00Z</published><updated>2006-01-22T01:45:00Z</updated><content type="html">&lt;P&gt;I got several emails as a response to my previous &lt;a href="http://blogs.msdn.com/yanivpessach/archive/2006/01/14/512925.aspx"&gt;post&lt;/A&gt; and enjoyed them all. One proposed channel I saw and really liked was the &lt;A href="http://www.cookcomputing.com/blog/archives/000505.html"&gt;mailboat channel&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;On a more futuristic note, if the mars explorer were to use WCF, it would probably have the same extremely long latency and reliability issues that the Carrier Pigeon channel has. This brings us to the topic of 'message exchange patterns', or MEPs. The message exchange pattern exposed by all the above channels is a one-way datagram. And in reality, it is hard to think of any low-level communication that is not built on a one-way channel. However, this is not always the appropriate model to use in communication systems.&lt;/P&gt;
&lt;P&gt;Two higher-level channel abstractions that WCF exposes are the Request-Reply abstraction, and the DuplexSession abstraction. More of these abstractions in my next post....&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=515830" width="1" height="1"&gt;</content><author><name>YanivPessach</name><uri>http://blogs.msdn.com/members/YanivPessach.aspx</uri></author></entry><entry><title>Exotic WCF channels - Carrier Pigeon</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/yanivpessach/archive/2006/01/14/512925.aspx" /><id>http://blogs.msdn.com/yanivpessach/archive/2006/01/14/512925.aspx</id><published>2006-01-14T21:54:00Z</published><updated>2006-01-14T21:54:00Z</updated><content type="html">&lt;P&gt;Sometimes, to explore the full meaning of an abstraction, you have to discuss the fringes - the cases where the abstraction almost works, but is quite ridiculous. &lt;/P&gt;
&lt;P&gt;&lt;IMG alt=Pigeon src="http://www.yanivpessach.com/pigeon1.jpg" onload="window.defaultStatus='Welcome to my MSDN bLog'"&gt; One such case is the Carrier Pigeon WCF (&lt;FONT color=#800080&gt;Indigo&lt;/FONT&gt;) Transport. In its core, a channel implementation should support sending and receiving a &lt;EM&gt;Message&lt;/EM&gt; object. One way to send a &lt;EM&gt;Message&lt;/EM&gt; object would be to serialize (in this case, manually write) the resulting XML on a piece of paper, tie it to a friendly pigeon, and send the message. The receiving side would deserialize the message by typing in the content of the paper. We don't yet plan on automating the pigeons themselves.&lt;/P&gt;
&lt;P&gt;This transport has some interesting properties. The basic data unit is a datagram (piece of paper). &lt;BR&gt;It is slow, low throughput, unreliable (pigeons get lost), does not have order guarantees and insecure (opponents can capture our pigeons, read the attached paper, and modify it). It can also be pretty messy.&lt;/P&gt;
&lt;P&gt;However, the carrier pigeon transport would fit the WCF channel model. It can be composed with WS-Security to provide security, and WS-RM (or another reliability protocol, as WS-RM was not optimized for carrier pigeons) to provide ACKs and reliability, etc.&lt;/P&gt;
&lt;SCRIPT&gt;
var flipCount=0;
function flipStatus() {
flipCount = flipCount + 1;
if (flipCount&gt;20)
{
window.defaultStatus='';
}
else
{
setTimeout("flipStatus()", 1000);
}
}
&lt;/SCRIPT&gt;

&lt;P&gt;&lt;IMG alt=Pigeon src="http://www.yanivpessach.com/wartimepigeon.jpg" onload=flipStatus()&gt; In reality, a similar transport has been used during WWI. &lt;/P&gt;&lt;BR&gt;
&lt;P&gt;&lt;FONT color=#808080&gt;Do you have other exotic WCF channel ideas? leave me a comment or send me an email! -- Yaniv&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=512925" width="1" height="1"&gt;</content><author><name>YanivPessach</name><uri>http://blogs.msdn.com/members/YanivPessach.aspx</uri></author></entry><entry><title>WCF and MSDN Magazine UDP article </title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/yanivpessach/archive/2006/01/10/511135.aspx" /><id>http://blogs.msdn.com/yanivpessach/archive/2006/01/10/511135.aspx</id><published>2006-01-10T12:03:00Z</published><updated>2006-01-10T12:03:00Z</updated><content type="html">&lt;P&gt;My latest &lt;A href="http://msdn.microsoft.com/msdnmag/issues/06/02/default.aspx"&gt;&lt;FONT color=#000080&gt;MSDN Magazine&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;article was just made available on line &lt;A href="http://msdn.microsoft.com/msdnmag/issues/06/02/UDP/default.aspx"&gt;&lt;FONT color=#000080&gt;here&lt;/FONT&gt;&lt;/A&gt;.&amp;nbsp;Most of the article verbiage is dedicated to discussing using UDP from .NET (using managed sockets) and how you would solve general UDP-protocol issues using an abstraction layer over .NET. &lt;BR&gt;However, the article also describes a solution to the same problem using &lt;FONT color=#000080&gt;Windows Communication Foundation (&lt;FONT color=#800080&gt;Indigo&lt;/FONT&gt;) &lt;/FONT&gt;&lt;FONT color=#000000&gt;using the UDP transport and the supplied reliability layer. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#000000&gt;It is interesting to note that the &lt;FONT color=#000080&gt;WCF&lt;/FONT&gt; code spans 40 lines, while a partial implementation of similar behavior spans almost ten times more code. What's more, changing the behavior of the &lt;FONT color=#000080&gt;WCF&lt;/FONT&gt; code involves setting a few properties, while changing the behavior of the .NET sockets code requires much code, and even more debugging. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;...We must have been doing something right...&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=511135" width="1" height="1"&gt;</content><author><name>YanivPessach</name><uri>http://blogs.msdn.com/members/YanivPessach.aspx</uri></author></entry><entry><title>Some other Indigo blogs on blogs.msdn.com</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/yanivpessach/archive/2006/01/07/510461.aspx" /><id>http://blogs.msdn.com/yanivpessach/archive/2006/01/07/510461.aspx</id><published>2006-01-07T23:46:00Z</published><updated>2006-01-07T23:46:00Z</updated><content type="html">&lt;P&gt;Some other &lt;FONT color=#4b0082&gt;&lt;STRONG&gt;Indigo&lt;/STRONG&gt;&lt;/FONT&gt; blogs on blogs.msdn.com that I regularly scan (and their recent post)&amp;nbsp;can be found at&amp;nbsp;-&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;Shy Cohen - &lt;a href="http://blogs.msdn.com/shycohen/archive/2005/10/17/482086.aspx"&gt;http://blogs.msdn.com/shycohen/archive/2005/10/17/482086.aspx&lt;/A&gt;&lt;BR&gt;Yasser Shohoud &lt;a href="http://blogs.msdn.com/yassers/archive/2005/11/29/497997.aspx"&gt;http://blogs.msdn.com/yassers/archive/2005/11/29/497997.aspx&lt;/A&gt;&lt;BR&gt;Richard Turner - &lt;a href="http://blogs.msdn.com/richardt/archive/2006/1/6.aspx"&gt;http://blogs.msdn.com/richardt/archive/2006/1/6.aspx&lt;/A&gt;&lt;BR&gt;KavitaK - &lt;a href="http://blogs.msdn.com/kavitak/archive/2005/10.aspx"&gt;http://blogs.msdn.com/kavitak/archive/2005/10.aspx&lt;/A&gt;&lt;BR&gt;Florin Lazar - &lt;a href="http://blogs.msdn.com/florinlazar/archive/2005/10/4.aspx"&gt;http://blogs.msdn.com/florinlazar/archive/2005/10/4.aspx&lt;/A&gt;&lt;BR&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you blog on blogs.msdn.com and Indigo is in your DNA, drop me a line. &lt;/P&gt;
&lt;P&gt;Of course, many &lt;FONT color=#4b0082&gt;Indigites&lt;/FONT&gt; blog on their personal sites or in blogs hosted elsewhere. I have not seen a list anywhere ; If I find one, I will link to it.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=510461" width="1" height="1"&gt;</content><author><name>YanivPessach</name><uri>http://blogs.msdn.com/members/YanivPessach.aspx</uri></author></entry><entry><title>New year, new blog</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/yanivpessach/archive/2006/01/07/510457.aspx" /><id>http://blogs.msdn.com/yanivpessach/archive/2006/01/07/510457.aspx</id><published>2006-01-07T23:08:00Z</published><updated>2006-01-07T23:08:00Z</updated><content type="html">&lt;P&gt;My name is Yaniv Pessach, and I am a member of the &lt;FONT color=#4b0082&gt;&lt;STRONG&gt;&lt;EM&gt;Indigo&lt;/EM&gt;&lt;/STRONG&gt;&lt;FONT color=#000000&gt; aka&lt;/FONT&gt; &lt;/FONT&gt;&lt;FONT color=#000000&gt;&lt;FONT color=#000000&gt;&lt;EM&gt;&lt;STRONG&gt;W&lt;/STRONG&gt;indows &lt;STRONG&gt;C&lt;/STRONG&gt;ommunication &lt;STRONG&gt;F&lt;/STRONG&gt;oundation&lt;/EM&gt; aka &lt;EM&gt;XML Web Services&lt;/EM&gt; team&lt;/FONT&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=5&gt;Why This Blog?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;The purpose of this blog differs from the goal of my personal website (&lt;A href="http://www.yanivpessach.com/"&gt;http://www.yanivpessach.com&lt;/A&gt;) or my personal bLog - it will be focused on work-related topics, and I expect most posts to be about &lt;FONT color=#4b0082&gt;&lt;STRONG&gt;Indigo-&lt;/STRONG&gt;&lt;FONT color=#000000&gt;related &lt;/FONT&gt;&lt;FONT color=#000000&gt;technology. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Enjoy the bLog. &lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=510457" width="1" height="1"&gt;</content><author><name>YanivPessach</name><uri>http://blogs.msdn.com/members/YanivPessach.aspx</uri></author></entry></feed>