From testbomber at gmail.com Fri Jul 3 00:52:27 2009 From: testbomber at gmail.com (klep) Date: Fri Jul 3 07:52:29 2009 Subject: [omniORB-dev] [CORBA] Broadcast method invocation Message-ID: <24317957.post@talk.nabble.com> Hi All ! I'm only newbie in Corba, so may be this question just doesn't have answer ;) I have two identical server application (with identical POA inside), can I register two servers in Corba Name serviss with broadcast support ? For example: computer1 MyNameSpace::Server::CreateTest(); computer2 the same MyNameSpace::Server::CreateTest(); Then client can send broadcast query to MyNameSpace::Server::CreateTest for all servers simultaneous. Is it possible ? And if yes, how ? -- View this message in context: http://www.nabble.com/-CORBA--Broadcast-method-invocation-tp24317957p24317957.html Sent from the OmniORB - Dev mailing list archive at Nabble.com. From floris.bruynooghe at gmail.com Sat Jul 4 14:58:18 2009 From: floris.bruynooghe at gmail.com (Floris Bruynooghe) Date: Sat Jul 4 13:58:50 2009 Subject: [omniORB-dev] Patch for gcc 4.4 build issues Message-ID: <20090704125818.GA7151@laurie.devork> Hi Below is a very simple patch that is required for omniORB to build with gcc 4.4. GCC 4.4 cleaned up some more C++ headers and you always need to #include headers directly. It would be nice if this could be merged. (Patch originally from Martin Michlmayr, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505389) Thanks Floris --- src/appl/utils/catior/catior.cc~ 2008-11-11 22:34:40.000000000 +0000 +++ src/appl/utils/catior/catior.cc 2008-11-11 22:34:56.000000000 +0000 @@ -25,6 +25,7 @@ // Lists contents of an IOR. #include +#include #include #include --- src/appl/utils/convertior/convertior.cc~ 2008-11-11 22:36:04.000000000 +0000 +++ src/appl/utils/convertior/convertior.cc 2008-11-11 22:36:10.000000000 +0000 @@ -25,6 +25,7 @@ // Takes an IOR, hostname as arguments. Outputs IOR with new hostname. #include +#include #include #include From duncan at grisby.org Wed Jul 8 18:27:33 2009 From: duncan at grisby.org (Duncan Grisby) Date: Wed Jul 8 17:27:34 2009 Subject: [omniORB-dev] Patch for gcc 4.4 build issues In-Reply-To: <20090704125818.GA7151@laurie.devork> Message-ID: <23313.1247070453@home.grisby.org> On Saturday 4 July, Floris Bruynooghe wrote: > Below is a very simple patch that is required for omniORB to build > with gcc 4.4. GCC 4.4 cleaned up some more C++ headers and you always > need to #include headers directly. It would be nice if this could be > merged. (Patch originally from Martin Michlmayr, > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505389) Thanks. I think the issue has already been addressed in CVS, with a slightly different change that avoids the use of EOF. Are you able to try that out? Cheers, Duncan. -- -- Duncan Grisby -- -- duncan@grisby.org -- -- http://www.grisby.org --