Habarisoft released new versions of Habari Client libraries for Delphi and Free Pascal application integration with free open source message brokers. Tested with current message broker versions Apache ActiveMQ 5.12 Apollo 1.7.1 HornetQ 2.4.5.Final Open MQ 5.1.1 b02 RabbitMQ 3.5.6 Improvements in this release ♦ RabbitMQ workaround A workaround is included for a breaking change … Continue reading Habari Client libraries release 2015.10
HornetQ message broker is now in maintenance mode
HornetQ is an open source project to build a multi-protocol, embeddable, very high performance, clustered, asynchronous messaging system. HornetQ is now in maintenance mode: as documented on the HornetQ Github project page, the master/upstream for HornetQ is now ActiveMQ Artemis. About ActiveMQ Artemis: The Artemis free open source message broker is based on a HornetQ … Continue reading HornetQ message broker is now in maintenance mode
ActiveMQ Artemis replaces HornetQ in WildFly 10
A post in the HornetQ user forum confirms that Apache ActiveMQ Artemis is going to replace HornetQ as the default messaging provider in WildFly 10: HornetQ has been donated to Apache and is now under the ActiveMQ umbrella and has been renamed to Artemis, see The HornetQ Team Blog: HornetQ Apache donation and Apache Artemis … Continue reading ActiveMQ Artemis replaces HornetQ in WildFly 10
Habari Client libraries release 2015.06
Habarisoft released new versions of Habari Client libraries for Delphi and Free Pascal application integration with free open source message brokers. Tested with current message broker versions Apache ActiveMQ 5.11.1 Apollo 1.7.1 HornetQ 2.4.5.Final Open MQ 5.1.1 b02 RabbitMQ 3.5.3 Improvements in this release ♦ Temporary destination support: unit test and ActiveMQ workaround The library … Continue reading Habari Client libraries release 2015.06
Habari Client libraries release 2015.02
Habarisoft released new versions of Habari Client libraries for Delphi and Free Pascal application integration with free open source message brokers. Tested with current message broker versions Apache ActiveMQ 5.11.0 Apollo 1.7 HornetQ 2.4.0.Final Open MQ 5.1 b09 RabbitMQ 3.4.3 Fixes The throughput test application uses the subscribe.receipt=true connection parameter to ensure that the broker … Continue reading Habari Client libraries release 2015.02
Habari Client libraries release 2014.09
Habarisoft released new versions of Habari Client libraries for Delphi and Free Pascal application integration with free open source message brokers. Tested with current message broker versions Apache ActiveMQ 5.10.0 Apollo 1.7 HornetQ 2.4.0.Final Open MQ 5.1 b09 RabbitMQ 3.3.5 Fixes Unhandled Exceptions in WaitForReceiptFrame are re-raised to notify client code about the exception Fixed compiler … Continue reading Habari Client libraries release 2014.09
Send secure SMTP email from Delphi applications
Introduction Sending email from Windows, Android and iOS Delphi applications over public SMTP servers requires an encrypted connection. Internet Direct (Indy) configuration for SSL/TLS connections is shown in this example source code. Disclaimer This code is mostly based on code posted in the Embarcadero forum and here. Example usage procedure TFormMailDemo.ButtonSendClick(Sender: TObject); var Mail: TSSLEmail; … Continue reading Send secure SMTP email from Delphi applications
ActiveMQ, Qpid, HornetQ and RabbitMQ in Comparison
An article by Thomas Beyer (also available in German language) gives a short introduction into popular messaging solutions which are available as free open source projects. "Newer architectures and the standardized AMQP protocol have led to a flood of message brokers. All brokers take claim to be fast, robust and reliable. But what really distinguish … Continue reading ActiveMQ, Qpid, HornetQ and RabbitMQ in Comparison
Query ActiveMQ Broker Statistics with Delphi
Broker Configuration To configure ActiveMQ to use the statistics plugin add the following to the ActiveMQ XML configuration: <plugins> <statisticsBrokerPlugin/> </plugins> The statistics plugin looks for messages sent to particular destinations. Query running broker statistics To query the running statistics of the message broker, the client sends an empty message to a Destination named ActiveMQ.Statistics.Broker, … Continue reading Query ActiveMQ Broker Statistics with Delphi
Indy 10 TIdTCPServer: Server-side message push example
Get the source code on Github This example uses a Delphi 2009 VCL application with a main form, which contains only one visual component, a TMemo named "MemoLog". Client and server are both started in the FormCreate event. [sourcecode language="Delphi"] procedure TServerPushExampleForm.FormCreate(Sender: TObject); begin ExampleServer := TMyPushServer.Create; ExampleServer.DefaultPort := 8088; ExampleServer.Active := True; ExampleClient := … Continue reading Indy 10 TIdTCPServer: Server-side message push example