Return-Path: X-Original-To: apmail-avro-user-archive@www.apache.org Delivered-To: apmail-avro-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 334D410B4F for ; Mon, 22 Jul 2013 11:55:08 +0000 (UTC) Received: (qmail 74196 invoked by uid 500); 22 Jul 2013 11:55:07 -0000 Delivered-To: apmail-avro-user-archive@avro.apache.org Received: (qmail 73756 invoked by uid 500); 22 Jul 2013 11:55:00 -0000 Mailing-List: contact user-help@avro.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@avro.apache.org Delivered-To: mailing list user@avro.apache.org Received: (qmail 73748 invoked by uid 99); 22 Jul 2013 11:55:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jul 2013 11:55:00 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of sstults@opensourceconnections.com designates 209.85.128.51 as permitted sender) Received: from [209.85.128.51] (HELO mail-qe0-f51.google.com) (209.85.128.51) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jul 2013 11:54:54 +0000 Received: by mail-qe0-f51.google.com with SMTP id a11so3618949qen.24 for ; Mon, 22 Jul 2013 04:54:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:content-type:content-transfer-encoding:subject:message-id:date :to:mime-version:x-mailer:x-gm-message-state; bh=dmz/fdfP0QrkE/WAU+AWarUZfQWb274mKmRqiYSym3Y=; b=AFXtp+zUtuu2JDTDSjDFZTjpy97akivqmWSUpoyFa7Eq+mKt86+4b54oCgnuKqlVpF J0Q/yuNfYsFuvUMWhvSnq1IBWn27mc4vGv2e++vYVV0ar8D/SLJRZTWaAJCHG/xPdSGq dokl5cNG4Uyl5oAS7UHtF1Ng3l31DS1fHZAcVn+jFUT8MfQNty/C9+Hnullm1EWPktkf BVYEcHGqbcuqgwTDvcEOVJXnRTC199qWMqLjgfJ0owD1vPLZqWvIeDBHyGa2kGfzN3x6 PcTBxXHz2F6nNLK1WcBtCS1M6+yyA20m15uJm0pIQKmlhD8/13x0TsF/NQYni/qLaWFk +hrQ== X-Received: by 10.224.80.3 with SMTP id r3mr27369504qak.22.1374494073524; Mon, 22 Jul 2013 04:54:33 -0700 (PDT) Received: from [192.168.1.12] (c-67-166-180-183.hsd1.va.comcast.net. [67.166.180.183]) by mx.google.com with ESMTPSA id 4sm40742564qaq.6.2013.07.22.04.54.32 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 22 Jul 2013 04:54:32 -0700 (PDT) From: Scott Stults Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Protocol serialization Message-Id: <4FC15224-8B8C-4EC9-B079-E7FBDB0C109B@opensourceconnections.com> Date: Mon, 22 Jul 2013 07:54:35 -0400 To: user@avro.apache.org Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) X-Mailer: Apple Mail (2.1508) X-Gm-Message-State: ALoCoQl111HiJDKK3Knl9Xqa69nHHGDLK+OMHGg5q4szasWi2upwUipbTNg0tpPHO19lmky+cLLR X-Virus-Checked: Checked by ClamAV on apache.org I'd like to use a Protocol for making a Solr UpdateHandler, but it seems = like I'm fighting the "spirit" of Protocol in that it would really like = to have a two-way conversation between endpoints. I don't think I can do = this since UpdateHandlers are basically a servlet that has a single = request/response cycle. Am I trying to force Protocol to do something it isn't built for? The = Protocol _model_ really fits what I'm trying to do. Is = Protocol.getMessages().getRequest() to construct the payload of the = servlet request the right path? Thank you, Scott=