Return-Path: Delivered-To: apmail-activemq-users-archive@www.apache.org Received: (qmail 76863 invoked from network); 30 May 2007 13:10:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 May 2007 13:10:35 -0000 Received: (qmail 57033 invoked by uid 500); 30 May 2007 13:10:39 -0000 Delivered-To: apmail-activemq-users-archive@activemq.apache.org Received: (qmail 57017 invoked by uid 500); 30 May 2007 13:10:39 -0000 Mailing-List: contact users-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@activemq.apache.org Delivered-To: mailing list users@activemq.apache.org Received: (qmail 57008 invoked by uid 99); 30 May 2007 13:10:39 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 06:10:39 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [199.105.164.5] (HELO smtpmail2.sensis.com) (199.105.164.5) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 06:10:33 -0700 Received: from dimstar3.ats.sensis.com ([172.21.1.34]) by smtpmail2.sensis.com with esmtp (Exim 4.50) id 1HtNwK-0000Me-76 for users@activemq.apache.org; Wed, 30 May 2007 09:10:12 -0400 Received: from corpatsmail1.ats.sensis.com ([172.21.1.88] helo=corpatsmail1.corp.sensis.com) by dimstar3.ats.sensis.com with esmtp (Exim 4.50) id 1HtNwA-0002P8-DS for users@activemq.apache.org; Wed, 30 May 2007 09:10:02 -0400 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: JMS C/C++ client without a java proxy Date: Wed, 30 May 2007 09:10:02 -0400 Message-ID: <7743F17344E95A4CA78A3E53A7AF496B0103A529@corpatsmail1.corp.sensis.com> In-Reply-To: <10873045.post@talk.nabble.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: JMS C/C++ client without a java proxy Thread-Index: AceiuWHD8gb5rVxKS6+pT+dH6iir2QAAKh4w From: "Mittler, Nathan" To: X-Sensis-MailScanner-Information: Scanned at Sensis Corporation by MailScanner X-Sensis-MailScanner: Found to be clean X-Sensis-MailScanner-SpamCheck: not spam (whitelisted), SpamAssassin (not cached, score=-4.274, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.12, BAYES_00 -2.60) X-Sensis-MailScanner-From: nathan.mittler@sensis.com X-Virus-Checked: Checked by ClamAV on apache.org =20 >=20 > 1. Regarding the links for activemq-cpp on your website, URL: > http://activemq.apache.org/cms.html: >=20 >=20 > Overview >=20 > * Index > * News > * Getting Started -> refers to the same website > (i.e.http://activemq.apache.org/cms.html) > * API -> refers to the same website > (i.e.http://activemq.apache.org/cms.html) > * FAQ -> refers to the same website > (i.e.http://activemq.apache.org/cms.html) > * Download -> refers to the same website > (i.e.http://activemq.apache.org/cms.html) >=20 >=20 These links work fine for me. I think what might be happening is that you clicked on the API link which takes you to http://activemq.apache.org/cms/html/ ... Once you're here, the site gets in a funky state where none of the links work. I've updated the site to fix this link, it should be fixed in an hour or so. For now, if you avoid the API link, you should be fine. >=20 > Using ActiveMQ-CPP >=20 > * Getting Started -> leads directly to the activemq=20 > getting started document=20 > * Example -> The requested URL /example.html was not=20 > found on this server. > * Configuring -> The requested URL /configuring.html was=20 > not found on this server. >=20 >=20 > The links you posted: >=20 > http://activemq.apache.org/cms/configuring.html > http://activemq.apache.org/cms/example.html >=20 > do work.... >=20 > 2. I looked at the example ( my C experiences is really a=20 > __long__ time ago), but to me it seems that activemq-cpp is=20 > more of an API - which itself is based on CMS - than of a client? >=20 > So, writing an appropriate Client which uses activemq-cpp is=20 > up to the user, right? >=20 Actually, CMS is the API. CMS is a set of interfaces (pure-virtual classes) that are implemented by ActiveMQ-CPP. CMS is the "face" of ActiveMQ-CPP to the user. Behind the scenes, ActiveMQ-CPP supports a pluggable architecture (another set of internal APIs) that allows it to support multiple transports and protocols, but all of that is abstracted from the user by the CMS API. The user does not need to write a client, activemq-cpp is the client. Out of the box, it will allow them to talk to a stomp or openwire broker (e.g. ActiveMQ). It may be extended to do more, but only if the user REALLY needs/wants to. Nate