It there a way to configure sending large messages? I have updated the binding and transport to increase the maxBufferSize, MaxBufferPoolSize & MaxReceivedMessageSize. The client (sender) looks like the large message is being sent and it looks like the broker receives and resends but the server (receiver) does not get the message.
Thoughts? -----Original Message----- From: Cliff Jansen [mailto:[email protected]] Sent: Monday, April 11, 2011 3:25 AM To: [email protected] Cc: Hubbell, Sean-W49290 Subject: Re: Question: I do not seem to be receiving messages using C# Hi Sean, I believe the problem you are having is that you are not pre-creating the message_queue before running the example. This is the fault of the way the examples are structured in the Qpid source tree versus the image in the installer. A bug (https://issues.apache.org/jira/browse/QPID-3196) has been filed to track fixing this. The missing step is the QCreate step in http://svn.apache.org/repos/asf/qpid/trunk/qpid/wcf/ReadMe.txt regarding running the samples. But I believe you are missing QCreate too. The easiest workaround is to use alternate WCF endpoints consistent with the newer Qpid messaging naming conventions. Try the following change to Service.cs 66c66 < Uri amqpUri = new Uri("amqp:message_queue"); --- > Uri amqpUri = new Uri("amqp:message_queue;{create:always}"); and to Client.cs: 40c40 < Uri amqpClientUri = new Uri("amqp:amq.direct?routingkey=routing_key"); --- > Uri amqpClientUri = new Uri("amqp:message_queue"); Cliff On Fri, Apr 8, 2011 at 7:20 AM, Sean Hubbell <[email protected]> wrote: > Hello, > > I have installed qpidc using the qpidc-0.8-x86.msi installer. I am seeing > an issue that the broker is not forwarding the messages to the server from > the WCFToWCFDirect example. I have tried this one two computers with no > luck. Here is a trace of the C++ broker: [ snip ] --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:[email protected]
