qpid federation problem on broker disconnection

2012-07-05 Thread joseluis
Hi, Testing a disconnection and reconnection on a broker federation, I'm having a problem When I stop a broker, the other broker writes on link list... HostPortTransport Durable State Last Error =

c++ qpidd broker and leap second problem

2012-07-02 Thread joseluis
Hi, This weekend we had an extra second thanks to leap second There is a bug on linux kernels witch affects to several applications. Java is one of the popular one affected by this bug Looks like c++ qpidd broker is also affected We had all qpidd brokers consuming lot of CPU. After setting th

compiling qpid ming32 with ssl

2012-02-28 Thread joseluis
I've compiled qpid with mingw32 on windows and ssl gcc version of mingw32 4.4 I had to apply next modifications on mingw32 and qpid files I had to modify the file sspi.h (mingw32 file) Commenting... //SECURITY_STATUS WINAPI ApplyControlTokenA(PCtxtHandle,PSecBufferDesc); //SECURITY_STATUS W

RE: patches for mingw32

2012-02-28 Thread joseluis
Most of the problems looks to be fixed There are some problems pending working with SSL I needed to patch some files http://qpid.2158936.n2.nabble.com/Questions-regarding-Qpid-C-windows-client-tp7220897p7304738.html After trying with different mingw32 versions, I've solved the problem modifying

Re: Questions regarding Qpid C++ windows client

2012-02-21 Thread joseluis
I'm working with windows 7, mingw32 qpid14 It's working I've compiled qpid14 with ssl support (with cmake) I had to modify the file sspi.h Commenting... //SECURITY_STATUS WINAPI ApplyControlTokenA(PCtxtHandle,PSecBufferDesc); //SECURITY_STATUS WINAPI ApplyControlTokenW(PCtxtHandle,PSecBufferDe

patches for mingw32

2012-02-20 Thread joseluis
Hi, I found these patches for mingw32 https://fedorahosted.org/matahari/attachment/wiki/mingw/mingw-qpid-trunk.patch They are not very recenct partches Anyone knows the reason why they are not included on trunk on version 0.14? kind regards -- View this message in context: http://qpid.2158

is it possible to reactivate a session with errors?

2012-02-02 Thread joseluis
Hi, After trying to connect to a non existing address, it's not possible to use the Session qpid::messaging::Connection connection("amqp:tcp:127.0.0.1:5672"); connection.open(); qpid::messaging::Session session = connection.createSession("pr"); qpid::messa

Re: Unknown protocol: tcp

2011-11-24 Thread joseluis
http://apache-qpid-users.2158936.n2.nabble.com/compiling-statically-qpid-td7029304.html -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/Unknown-protocol-tcp-tp5981768p7029542.html Sent from the Apache Qpid users mailing list archive at Nabble.com.

compiling statically qpid

2011-11-24 Thread joseluis
qpid doesn't work compiling statically I need it in order to manage exceptions properly in windows with mingw32 The problem looks to be on TCPConnector.cpp struct StaticInit { StaticInit() { Connector::registerFactory("tcp", &create); }; } init; This c

compiling with mingw on windows AI_ADDRCONFIG was not defined

2011-10-27 Thread joseluis
I've downloaded qpid from git repository Last commit... QPID-3504: ensure the glue for the optional bdbstore feature is part of the broker binary package 676b55c23fafb4763a5f89586fd6a357d8783b85 I'm compiling qpid with mingw gcc version 4.4 I have the error AI_ADDRCONFIG was not declared T

Re: receptor out of scope with no calling receptor.close();

2011-10-07 Thread joseluis
Thanks, I downloaded the last version on git repository and it works PERFECT Fantastic job, thanks -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/receptor-out-of-scope-with-no-calling-receptor-close-tp6858408p6869077.html Sent from the Apache Qpid users mailing

Re: receptor out of scope with no calling receptor.close();

2011-10-05 Thread joseluis
Thanks, You are right I will compile qpid from trunk and I will test it again Thanks for your comments -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/receptor-out-of-scope-with-no-calling-receptor-close-tp6858408p6861720.html Sent from the Apache Qpid users mai

Re: receptor out of scope with no calling receptor.close();

2011-10-05 Thread joseluis
Even calling to receptor.close(); the behavior is bad. In this case, the receptor (even a new one created with drain) receives messages slowly (I didn't check at the moment if there are dropped messages) regards -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/re

receptor out of scope with no calling receptor.close();

2011-10-04 Thread joseluis
Hi, With other program, I'm sending 1000 messages per second on exchante testing/PRD1 In program bellow, I'm receiving those messages The receptor gets out of scope and is created a new one per 1000 messages If line receptor.close(); is commented, the client program increase quickly the cpu us

LVQ on linked queue

2011-09-28 Thread joseluis
Is it possible to configure the linked queue of a topic to work with LVQ? I'm using an exchange with a linked queue with this configuration testing/#; { assert: allways, node : { type: topic }, link: { durable: false, x-declare: { auto-delete: true

Re: memory consumption on broker not closing session

2011-09-27 Thread joseluis
Thanks, it's working configuring the flags of linked queue -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/memory-consumption-on-broker-not-closing-session-tp6833011p6835525.html Sent from the Apache Qpid users mailing list archive at Nabble.com. -

Re: Compiling qpid in Windows

2011-09-27 Thread joseluis
You could contact with http://www.riverace.com/qpid/downloads.htm and get support from them in order to compile in windows -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/Compiling-qpid-in-Windows-tp2244367p6835513.html Sent from the Apache Qpid users mailing list

Re: Compiling qpid in Windows

2011-09-26 Thread joseluis
Hi, I've compiled qpid on windows with mingw32 and cmake qpid version 012 I suppouse you are trying to compile with visual c++ If so... have you tried with http://www.riverace.com/qpid/downloads.htm? -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/Compiling-

memory consumption on broker not closing session

2011-09-26 Thread joseluis
I wrote a program who sends 1000 messages per second on testing address continuously The program below, read these messages, and after 1 messages, create a new session and receptor with same configuration as before The receptor and session get out of scope before creating the new one,

RE: qpid windows mingw crasesh

2011-04-21 Thread joseluis
Thanks I tried to compile qpid on windows with mingw but I got several errors I'm using the compilation from fedora (crosscompiling for mingw) I'll try to compile again and debug it to look for the error kind regards -- View this message in context: http://apache-qpid-users.2158936.n2.nabbl

Re: qpid windows mingw crasesh

2011-04-20 Thread joseluis
Hi, I reduced the problem If I make a request to a server and after that, I make a suscription, some times the program crash If I make the suscription and after that, I send the request, the program doesn't crash It looks like if the problem could be when suscribing while qpid lib is receivin