Habarisoft released new versions of Habari Client libraries for Delphi and Free Pascal application integration with free open source message brokers, including Apache ActiveMQ, Apache ActiveMQ Artemis, OpenMQ and RabbitMQ. Full release notes are available at https://www.habarisoft.com/releases/2017.02/ Habari Client libraries enable Object Pascal applications to take advantage of message broker / message queue technology … Continue reading Habari Client libraries release 2017.02
Sending messages to a RabbitMQ auto-delete queue
The RabbitMQ STOMP plugin supports advanced queue features, which can be defined in the management interface but also from clients when the queue is created. No matter how these features have been declared, RabbitMQ requires that the client specifies the same feature settings anytime when this queue is used. Example 1: auto-delete Creation of an … Continue reading Sending messages to a RabbitMQ auto-delete queue
Habari Client libraries release 2016.10
Habarisoft released new versions of Habari Client libraries for Delphi and Free Pascal application integration with free open source message brokers. including Apache ActiveMQ and RabbitMQ. Full release notes are available at https://www.habarisoft.com/releases/2016.10/ Habari Client libraries enable Object Pascal applications to take advantage of message broker / message queue technology - which is distributed, … Continue reading Habari Client libraries release 2016.10
Habari Client libraries release 2016.04
Habarisoft released new versions of Habari Client libraries for Delphi and Free Pascal application integration with free open source message brokers. Full release notes are available at https://www.habarisoft.com/releases/2016.04/
Habari Client libraries release 2015.12
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.13.0 Apollo 1.7.1 Artemis 1.0.0 HornetQ 2.4.5.Final Open MQ 5.1.1 b02 RabbitMQ 3.5.7 Release notes Full release notes are available at https://www.habarisoft.com/releases/2015.12/
Habari Client libraries release 2015.10
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
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
Open source REST client libraries for Delphi
delphi-oopdelphi-oop includes a REST client to consume RESTful web services using your own annotated class (similar to JAX-RS). It supports Google OAuth 2.0 authentication. The library is mostly tested with Delphi XE and hosted on Google Code at https://code.google.com/p/delphi-oop/Code example: (more examples on the project page)[sourcecode lang="delphi"] TODataNorthwindClient = class(TSvRESTClient) public [GET] [Path('/Customers')] [Consumes(MEDIA_TYPE.JSON)] function … Continue reading Open source REST client libraries for Delphi