Re: Java client bindings on JBoss ESB

2009-02-09 Thread Jeffrey Bride
Hi Arnaud, great suggestion ... that approach also works unless the amqp.properties is included in the ESB archive. In JBoss, property files are typically packaged in the root of any type of JEE (*.jar) or JBoss specific archive (*.esb, *.sar). Subsequently, those property files end up in

Re: message and subscription doubts

2009-02-09 Thread GS.Chandra N
Thanks for the replies Rafael. >Rafael Schloming wrote: >Am I correct in thinking that the total number of subscriptions would be (600-800)*100, i.e. 60,000-80,000 queues? If so that may be a lot, but the C++ guys can probably give you more details. No i was talking about 600-800 clients with 10

Re: Python API quick doubts

2009-02-09 Thread GS.Chandra N
Thanks for the detailed reply Rafael. Might i ask for some clarification on the answers provided - >Rafael Schloming wrote: One of the message properties is a free-form map you can use like this: >mp = session.message_properties(application_headers={"my_field": val, ...}) Are these the top level

Re: message and subscription doubts

2009-02-09 Thread Rafael Schloming
GS.Chandra N wrote: Hi, I'm testing the qpid distribution using the pub-sub examples that come as part of the python distribution and have certain doubts 1. Is ttl handled only by brokers ? At which points can a message be dropped? Is there a way to track how many such messages where dropped?

Re: Python API quick doubts

2009-02-09 Thread Rafael Schloming
GS.Chandra N wrote: Hi, I have just started with the client api's using python pub-sub examples. I'm modifying them for my purpose / for understanding and have encountered some doubts. I would appreciate any help with these 1. Is a new delivery_property objected created each time session.deliv

FailoverManager

2009-02-09 Thread Adam Chase
First thank you for all the help you've been giving me, its been extremely useful. My question now is about the FailoverManager. >From what I can read, it essentially associates each command with a session and then if that fails, reconnects you to the failover server and lets you continue the wor

RE: About footprint size

2009-02-09 Thread Steve Huston
There's an open jira for this, QPID-1625. https://issues.apache.org/jira/browse/QPID-1625 -Steve > -Original Message- > From: chenta lee [mailto:che...@gmail.com] > Sent: Monday, February 09, 2009 11:37 AM > To: users@qpid.apache.org > Subject: Re: About footprint size > > > Thanks Cli

Re: About footprint size

2009-02-09 Thread chenta lee
Thanks Cliff, I got a windows machine and try to build C++ qpid client on it. But when I try to build the example, it always failed at "stdint.h" file. I have tried many different version of stdint.h file, likes boost/cstdint.hpp, or pstdint.h. But neither of them can pass. Could you tell me how to

Re: warning CPG flow control enabled

2009-02-09 Thread Alan Conway
Adam Chase wrote: What does this mean and how can I improve the performance of my clustering? Are there aisexec settings I should be tweaking? That warning is harmless, it just means openais has asked qpidd to slow down while it clears a backlog of messages. I'll remove it as it was mostly th

Re: Java client bindings on JBoss ESB

2009-02-09 Thread Carl Trieloff
Arnaud Simon wrote: Robert Greig wrote: Hi Jeff, I'm currently working on an AMQP gateway for the JBoss ESB using the QPid Java client libraries. I have gotten it to work ... but did experience a few issues along the way. I made modifications to the JBoss ESB to accommodate the problem I

Re: Improved Python API docs

2009-02-09 Thread Jonathan Robie
There are a set of examples that illustrate the most common messaging patterrns - these are complete programs, in a different format from the ones you point to below (I'm copying this from the "Getting Started" page at http://qpid.apache.org/getting-started.html). Use SVN to check out the exa

message and subscription doubts

2009-02-09 Thread GS.Chandra N
Hi, I'm testing the qpid distribution using the pub-sub examples that come as part of the python distribution and have certain doubts 1. Is ttl handled only by brokers ? At which points can a message be dropped? Is there a way to track how many such messages where dropped? I'm trying to look at t

Python API quick doubts

2009-02-09 Thread GS.Chandra N
Hi, I have just started with the client api's using python pub-sub examples. I'm modifying them for my purpose / for understanding and have encountered some doubts. I would appreciate any help with these 1. Is a new delivery_property objected created each time session.delivery_properties is call

Re: Java client bindings on JBoss ESB

2009-02-09 Thread Arnaud Simon
Robert Greig wrote: Hi Jeff, I'm currently working on an AMQP gateway for the JBoss ESB using the QPid Java client libraries. I have gotten it to work ... but did experience a few issues along the way. I made modifications to the JBoss ESB to accommodate the problem I was experiencing. P