[jira] [Updated] (PROTON-329) Centos 6.4 build failure: Could NOT find PerlLibs

2013-06-10 Thread Evgeny Minkevich (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-329?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Evgeny Minkevich updated PROTON-329: Attachment: output.txt Attaching the requested outputs. > Centos 6.4 build

Creating queues with PROTON messenger

2013-06-10 Thread atarutin
I've read a lot about AMQP protocol and it seems that specification of protocol supports dynamic creation of queues. Could anybody help me please with an example of queue create through PROTON API? I didn't find any creational method around the messenger but I still think it is possible without mes

[jira] [Commented] (PROTON-329) Centos 6.4 build failure: Could NOT find PerlLibs

2013-06-10 Thread Darryl L. Pierce (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-329?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13679485#comment-13679485 ] Darryl L. Pierce commented on PROTON-329: - Okay, can you capture as text the outpu

[jira] [Commented] (PROTON-329) Centos 6.4 build failure: Could NOT find PerlLibs

2013-06-10 Thread Evgeny Minkevich (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-329?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13679482#comment-13679482 ] Evgeny Minkevich commented on PROTON-329: - Yes, it is installed. When I define PER

[jira] [Resolved] (PROTON-324) Perl arrays can be easily extracted from a Data object.

2013-06-10 Thread Darryl L. Pierce (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Darryl L. Pierce resolved PROTON-324. - Resolution: Fixed > Perl arrays can be easily extracted from a Data object. > ---

[jira] [Updated] (PROTON-324) Perl arrays can be easily extracted from a Data object.

2013-06-10 Thread Darryl L. Pierce (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Darryl L. Pierce updated PROTON-324: Fix Version/s: 0.5 > Perl arrays can be easily extracted from a Data object. >

[jira] [Commented] (PROTON-324) Perl arrays can be easily extracted from a Data object.

2013-06-10 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-324?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13679480#comment-13679480 ] ASF subversion and git services commented on PROTON-324: Commit 14

[jira] [Commented] (PROTON-329) Centos 6.4 build failure: Could NOT find PerlLibs

2013-06-10 Thread Darryl L. Pierce (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-329?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13679455#comment-13679455 ] Darryl L. Pierce commented on PROTON-329: - Can you verify that you have both perl

[jira] [Assigned] (PROTON-329) Centos 6.4 build failure: Could NOT find PerlLibs

2013-06-10 Thread Darryl L. Pierce (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-329?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Darryl L. Pierce reassigned PROTON-329: --- Assignee: Darryl L. Pierce > Centos 6.4 build failure: Could NOT find PerlLibs >

Re: Receiving messages with PROTON messenger

2013-06-10 Thread atarutin
It works, thank you. But now sometimes I get more messages then I wanted to get. -- View this message in context: http://qpid.2158936.n2.nabble.com/Receiving-messages-with-PROTON-messenger-tp7593934p7593952.html Sent from the Apache Qpid Proton mailing list archive at Nabble.com.

Re: Receiving messages with PROTON messenger

2013-06-10 Thread Rafael Schloming
The semantics of pn_messenger_recv is to block until at least one message is available. This means if you call it when there are available messages it will return immediately. Try something like this: while (_gotcount < _getcount) { pn_messenger_recv(messenger, _getcount - _gotcount); whil

Re: Receiving messages with PROTON messenger

2013-06-10 Thread atarutin
You unserstood me correctly. But suggested solution doesn't work. What I did: pn_messenger_t* messenger = pn_messenger(); pn_messenger_start(messenger); pn_messenger_subscribe(_pm.messenger, ); pn_messenger_set _timeout(messenger, 1000); int _getco