summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClifford Allan Jansen <cliffjansen@apache.org>2012-11-05 22:00:19 +0000
committerClifford Allan Jansen <cliffjansen@apache.org>2012-11-05 22:00:19 +0000
commit2fc14993a7d78002bb6992f6837118b16edf4c83 (patch)
tree9b414e492525fe81d4130c423828d16b16c84724
parent7ce7d0773c1afaaeb93d7ece9c39e692998f40c0 (diff)
downloadqpid-python-2fc14993a7d78002bb6992f6837118b16edf4c83.tar.gz
QPID-4400: missing WriteEndElement in binary content writer
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1405981 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--wcf/samples/Channel/HelloWorld/HelloWorld.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/wcf/samples/Channel/HelloWorld/HelloWorld.cs b/wcf/samples/Channel/HelloWorld/HelloWorld.cs
index 0845e42c8a..88cb11038d 100644
--- a/wcf/samples/Channel/HelloWorld/HelloWorld.cs
+++ b/wcf/samples/Channel/HelloWorld/HelloWorld.cs
@@ -113,6 +113,7 @@ namespace Apache.Qpid.Samples.Channel.HelloWorld
byte[] binaryContent = Encoding.UTF8.GetBytes("Hello world!");
writer.WriteStartElement("Binary");
writer.WriteBase64(binaryContent, 0, binaryContent.Length);
+ writer.WriteEndElement();
}
}
}