Thursday, April 1, 2010

AMQP Conference 2010 in San Diego, June 8th

Will be held once again at the University of California in San Diego.

Here is the preliminary agenda.
Like last year, we will be holding a one day public conference with presentations from AMQP designers and implementers - this makes it easy for delegates to fly in and out on the same day and was appreciated by many attendees last year. We also intend to add a workshop flavour to this year's conference to make it more interactive, and will have double the capacity available for attendees.

So pencil Tuesday June 8th into your diary; transform the world of middleware, meet interesting people and a enjoy a great venue!

Itinerary and booking details will follow later this month.

Tuesday, March 16, 2010

Messaging: Low Latency, High Throughput, Durable, RESTful, Open, Standards, ...

Martin Sustrik, Pieter Hintjens of iMatix and Brett Cameron of HP gave a great talk on messaging in general and 0MQ with AMQP in particular. OpenAMQ and 0MQ are both available on OpenVMS. See the BC&JA Web site for more information.

See the Session recording (WMV) file
and The Slides

Well worth the time spent listening and reading through the slides.

Thursday, January 21, 2010

Kirk's Rants: AMQP: Why Do I Care

This Kirk's Rants: AMQP: Why Do I Care is great piece on standards in general and AMQP in particular.
Please do take a look if you are interested in the topics of messaging and standards, not to mention open source.

Thank you, Kirk, for such an excellent piece!

John

Wednesday, September 16, 2009

Getting started with AMQP and RabbitMQ

Getting started with AMQP and RabbitMQ is a great article about AMQP with lots of good explanations. It uses RabbitMQ, Ruby and Erlang for the examples, so is not the version that we have ported to OpenVMS OpenAMQ (see the OpenAMQ on OpenVMS page too), but still worth a read and even a try as it does a good job of explaining where all the bits and pieces are and how they interact.

Regards, John

Sunday, February 15, 2009

AMQP and QPID - nice article by William Henry with more to come

http://ipbabble.com/2009/02/amqp-and-qpid.html is a nice introduction to AMQP, with the promise of a sample to follow - watch this space!
William points out a rather good introduction (will we ever have too many, probably) to the AMQP concepts which can be found here http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_MRG/1.1/html/Messaging_Tutorial/chap-Messaging_Tutorial-Initial_Concepts.html

Wednesday, February 11, 2009

From Linux to Bangalore and back via OpenVMS

You really should go and read the following blog entry: http://www.zyre.com/blog:from-linux-to-bangalore-and-back.

Any one of the machines in between could have been Windows, OpenVMS, Linux or HP-UX.

For fun we've (Pieter H. and friends) opened a live Zyre server, which accepts unauthenticated connections (we'll probably lock it down at a later stage).

This means it's possible to try RestMS apps without installing anything except perhaps some Perl modules, if you want to use the Perl RestMS class[1].

I've written a blog entry[2] that shows how to write a trivial micro- blogging service in Perl using this class. To save you the click, here is what the publisher looks like:

use RestMS ();
my $domain = RestMS::Domain->new (hostname => "live.zyre.com"); my $feed = $domain->feed (name => "ublog", type => "fanout"); my $message = RestMS::Message->new; $message->content (shift); $message->headers (name => "Jeep Nine Thirst"); $feed->send ($message);

This is a nice example of how RestMS maps to a clean class structure.

-Pieter

Links:

[1] http://www.restms.org/wiki:restms-pl
[2] http://www.zyre.com/blog:live-zyre