Questions about resquest/response pattern

2011-05-09 Thread Heinrich Muralt
Hi, I’m a newbie in Apache Qpid and read “Programming in Apache Qpid“. I’ve got a question concerning the Request/Response Pattern shown here: http://qpid.apache.org/books/trunk/Programming-In-Apache-Qpid/html/ch02s12.html

Re: RPC over AMQP with Hessian

2011-05-09 Thread Gordon Sim
On 05/06/2011 11:01 AM, Emmanuel Bourg wrote: Hi, Thanks to the availability of the Maven artifacts with the 0.10 release I've been able to finalize the library to do Hessian remote procedure calls over AMQP. A documentation is available with complete code examples on Github:

Re: Qpid Default Configuration

2011-05-09 Thread Gordon Sim
On 05/06/2011 02:34 PM, Fallon, Richard wrote: Hello, Is it possible to change some of the default settings used when a queue is created, note I do not mean override them at runtime? So currently if a queue is created the default policy when the queue size is exceeded is to block the producer

Re: Is it possible to delete overfill queue?

2011-05-09 Thread Gordon Sim
On 05/06/2011 12:08 PM, Ilyushonak Barys wrote: Greetings, Could you please help me find the answer to the following question. Is it possible to auto delete queue, if the message count reach max-queue-count settings? Unfortunately not at this point. The use case below comes up quite

Re: Beginner - Need help (Basics)

2011-05-09 Thread Gordon Sim
On 05/05/2011 10:00 PM, Nathan Sevugan wrote: 1. Where do I find the binaries for the latest (0.10) qpidd cpp broker? Is there one or should I build it from the source? 2. I tried the qpidd .8 broker installer, does not seem to work with java client .10 I started the C++ broker using qpidd.exe

Re: Questions about resquest/response pattern

2011-05-09 Thread Gordon Sim
On 05/09/2011 08:51 AM, Heinrich Muralt wrote: Hi, I’m a newbie in Apache Qpid and read “Programming in Apache Qpid“. I’ve got a question concerning the Request/Response Pattern shown here: http://qpid.apache.org/books/trunk/Programming-In-Apache-Qpid/html/ch02s12.html

Re: qpid-ruby

2011-05-09 Thread Gordon Sim
On 05/05/2011 12:40 PM, Frédéric Logier wrote: I'm happy to see the new version 0.10 of qpid, but I'm really disappointed to not find the ruby client, so what about it ? is it abandonned ? There were no obvious changes to that client since the previous release, so it was dropped. The API of

Re: qpid-ruby

2011-05-09 Thread Carl Trieloff
On 05/05/2011 03:43 PM, Frédéric Logier wrote: Le jeudi 05 mai 2011 à 10:40 -0400, Carl Trieloff a écrit : On 05/05/2011 07:40 AM, Frédéric Logier wrote: Hi, I'm happy to see the new version 0.10 of qpid, but I'm really disappointed to not find the ruby client, so what about it ? is it

Re: Questions about resquest/response pattern

2011-05-09 Thread Rajith Attapattu
On Mon, May 9, 2011 at 6:36 AM, Gordon Sim g...@redhat.com wrote: On 05/09/2011 08:51 AM, Heinrich Muralt wrote: Hi, I’m a newbie in Apache Qpid and read “Programming in Apache Qpid“. I’ve got a question concerning the Request/Response Pattern shown here:

Re: Qpid Default Configuration

2011-05-09 Thread Rajith Attapattu
On Mon, May 9, 2011 at 6:36 AM, Gordon Sim g...@redhat.com wrote: On 05/06/2011 02:34 PM, Fallon, Richard wrote: Hello, Is it possible to change some of the default settings used when a queue is created, note I do not mean override them at runtime? So currently if a queue is created the

Re: Qpid Default Configuration

2011-05-09 Thread Jakub Scholz
Hi, Based on my experience, I would assume, that if you want your customers to use RING type queues, you should anyway force it using ACL, since even when the default policy type is implemented, the consumer will be probably able to overwrite the default value. You can use acl allow Consumer

Re: Qpid Default Configuration

2011-05-09 Thread Rajith Attapattu
I tested the ACL method (deny mode) and it does work. acl allow user/group create queue policytype=ring (All though if you use allow mode it will not work as the default value for queue policy is empty and it's not allowed to be specified in ACL at the moment). Having a configurable default

Re: Beginner - Need help (Basics)

2011-05-09 Thread Nathan Sevugan
Thanks Gordon. I will try it and let you know. On Mon, May 9, 2011 at 5:38 AM, Gordon Sim [via Apache Qpid users] ml-node+6343757-1931709817-334...@n2.nabble.com wrote: On 05/05/2011 10:00 PM, Nathan Sevugan wrote: 1. Where do I find the binaries for the latest (0.10) qpidd cpp broker?

putting a message into a defined queue (created by a qpid server at startup time)

2011-05-09 Thread Mahmoud Parsian
Hello, I am using qpid-0.10 (Java with BDB persistence for messages). I define a single queue (it's name is: testqueue -- definition is given below), which is created at server start up time. Then I put 2 messages into this queue (code is given below), but it seems that my messages are not put

putting a message into a defined queue (created by a qpid server at startup time)

2011-05-09 Thread Mahmoud Parsian
Hello all, I posted my question in a wrong thread, so I am posting it here again (sorry about this!). I am using qpid-0.10 (Java with BDB persistence for messages). I define a single queue (it's name is: testqueue -- definition is given below), which is created at server start up time. Then I