Bug in C# request-response example client program
-------------------------------------------------
Key: QPID-2022
URL: https://issues.apache.org/jira/browse/QPID-2022
Project: Qpid
Issue Type: Bug
Components: Qpid Examples
Environment: VS 2008, Windows XP
Reporter: Jan Matti
Priority: Minor
instead
string response_queue = "client" + session.getName();
you must write
ASCIIEncoding enc = new ASCIIEncoding();
string response_queue = "client" + enc.GetString(session.getName());
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project: http://qpid.apache.org
Use/Interact: mailto:[email protected]