You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by cl...@apache.org on 2012/11/05 23:00:19 UTC

svn commit: r1405981 - /qpid/trunk/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs

Author: cliffjansen
Date: Mon Nov  5 22:00:19 2012
New Revision: 1405981

URL: http://svn.apache.org/viewvc?rev=1405981&view=rev
Log:
QPID-4400: missing WriteEndElement in binary content writer

Modified:
    qpid/trunk/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs

Modified: qpid/trunk/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs?rev=1405981&r1=1405980&r2=1405981&view=diff
==============================================================================
--- qpid/trunk/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs (original)
+++ qpid/trunk/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs Mon Nov  5 22:00:19 2012
@@ -113,6 +113,7 @@ namespace Apache.Qpid.Samples.Channel.He
             byte[] binaryContent = Encoding.UTF8.GetBytes("Hello world!");
             writer.WriteStartElement("Binary");
             writer.WriteBase64(binaryContent, 0, binaryContent.Length);
+            writer.WriteEndElement();
         }
     }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org