diff options
| author | Clifford Allan Jansen <cliffjansen@apache.org> | 2012-11-05 22:00:19 +0000 |
|---|---|---|
| committer | Clifford Allan Jansen <cliffjansen@apache.org> | 2012-11-05 22:00:19 +0000 |
| commit | 63773ea5c91077f703d66d9be8d3c522b15ad091 (patch) | |
| tree | 976f3a775221dae8ff26084bb47cfec0acd57da7 | |
| parent | 317fb4aec9f7fb4df709c374c2a176cd6c9aed94 (diff) | |
| download | qpid-python-63773ea5c91077f703d66d9be8d3c522b15ad091.tar.gz | |
QPID-4400: missing WriteEndElement in binary content writer
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1405981 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs b/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs index 0845e42c8a..88cb11038d 100644 --- a/qpid/wcf/samples/Channel/HelloWorld/HelloWorld.cs +++ b/qpid/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();
}
}
}
|
