Hi Willy, > Can anyone please suggest how to activate/install qpid-persistence, so my > queues wont destroyed once my broker has stopped? > > I am using windows qpid broker cpp [QPID 0.16] Thank you
The persistence module is included in the Windows source, so you probably built it. It requires Microsoft SQL Server Express 2005 or newer. To load the persistence modules at run time, add to your broker start-up options: --load-module <path-to-your-built-dlls>\store.dll --load-module <path-to-your-built-dlls>\mssql_store.dll If you plan to use the CLFS-based store instead of the SQL-only store, change the second option to: --load-module <path-to-your-built-dlls>\msclfs_store.dll After that, your code will need to create persistent queues and when you send messages they must be persistent as well, or they won't be placed in the store. -Steve -- Steve Huston, Riverace Corporation Total Lifecycle Support for Your Networked Applications http://www.riverace.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
