Return-Path: Delivered-To: apmail-abdera-user-archive@www.apache.org Received: (qmail 13605 invoked from network); 16 Aug 2010 07:36:21 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 16 Aug 2010 07:36:21 -0000 Received: (qmail 33328 invoked by uid 500); 16 Aug 2010 07:36:21 -0000 Delivered-To: apmail-abdera-user-archive@abdera.apache.org Received: (qmail 33162 invoked by uid 500); 16 Aug 2010 07:36:19 -0000 Mailing-List: contact user-help@abdera.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@abdera.apache.org Delivered-To: mailing list user@abdera.apache.org Received: (qmail 33154 invoked by uid 99); 16 Aug 2010 07:36:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 07:36:17 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of ant.elder@gmail.com designates 209.85.216.42 as permitted sender) Received: from [209.85.216.42] (HELO mail-qw0-f42.google.com) (209.85.216.42) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 07:36:11 +0000 Received: by qwb8 with SMTP id 8so5655164qwb.15 for ; Mon, 16 Aug 2010 00:35:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:reply-to:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=LxS+Q8k0SR9DSFuGJBGDaDgjtjPEuq5M1TrDqhV0Eh4=; b=hVgMzdN8JyhbjMU5UIkFULQ4LXSQxH3rgHy/Ogu2S2Ftco3DhVZ17X8PMwb9mhQZog HIaHAGfWHB7uLJ/oAhM6TQ6ayXVGzYIDbPz4CfDuLlrEgzVw/VQVb9YwEzamiPnZBDFm TIKKhtS3f8q5nz1Yau6ofRCrLBd3VmKcrdXZU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:reply-to:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=oedK7250JUktvFvYgYcmCmDU8sc8hiVrLiYeX4v859FjgxhHc61xN6l6sMynDQs4co CyC6ShJeHUt278Ddgwuhl2VM6+4grPf1GjlDnJim5fqxCTeZnS/5YiQeNjor7DrqSkj1 gONUaJ9HaWuZSaQmse8KifMGFUieEkmcuYcSM= MIME-Version: 1.0 Received: by 10.229.52.8 with SMTP id f8mr221465qcg.286.1281944150686; Mon, 16 Aug 2010 00:35:50 -0700 (PDT) Sender: ant.elder@gmail.com Reply-To: antelder@apache.org Received: by 10.229.99.210 with HTTP; Mon, 16 Aug 2010 00:35:50 -0700 (PDT) In-Reply-To: <99A62CE908C19D419B548435838136CF5426E4@exchange.integrity-apps.com> References: <99A62CE908C19D419B548435838136CF5426AB@exchange.integrity-apps.com> <99A62CE908C19D419B548435838136CF5426AD@exchange.integrity-apps.com> <99A62CE908C19D419B548435838136CF5426B8@exchange.integrity-apps.com> <99A62CE908C19D419B548435838136CF5426E4@exchange.integrity-apps.com> Date: Mon, 16 Aug 2010 08:35:50 +0100 X-Google-Sender-Auth: 4p4KYcNyV5wHSGms6NBEjam5ndQ Message-ID: Subject: Re: EntryRequestProcessor and MediaRequestProcessor do not support POST From: ant elder To: "Reese, Nathan" Cc: user@abdera.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Many thanks for the fix, i guess we should be able to do a 1.1.1 maintenance release to include that, i'll go bring it up on the dev list. ...ant On Thu, Aug 12, 2010 at 4:22 PM, Reese, Nathan wrote: > Ant, > > I have created a jira for this issue. > https://issues.apache.org/jira/browse/ABDERA-262 > > I have attached the fixed class and corresponding unit tests.=A0 Is there > anyway that I can get a 1.1.1 release with these fixes? > > Thanks, > > Nathan > > > -----Original Message----- > From: ant elder [mailto:ant.elder@gmail.com] > Sent: Thu 8/12/2010 1:59 AM > To: user@abdera.apache.org > Subject: Re: EntryRequestProcessor and MediaRequestProcessor do not suppo= rt > POST > > That looks like a bug to me too. Please raise a JIRA for it...and if > you'd like to contribute a fix that would be wonderful. > > =A0=A0 ...ant > > On Thu, Jul 29, 2010 at 3:51 PM, Reese, Nathan > wrote: >> Is there a reason why the EntryRequestProcessor and MediaRequestProcesso= r >> processEntry methods do not handle POST requests? =A0This seems like a b= ug to >> me. =A0I am using abdera 1.1 release. >> >> String method =3D context.getMethod(); >> if (method.equalsIgnoreCase("GET")) { >> =A0 return adapter.getEntry(context); >> } else if (method.equalsIgnoreCase("PUT")) { >> =A0 return adapter.putEntry(context); >> } else if (method.equalsIgnoreCase("DELETE")) { >> =A0 return adapter.deleteEntry(context); >> } else if (method.equalsIgnoreCase("HEAD")) { >> =A0 return adapter.headEntry(context); >> } else if (method.equalsIgnoreCase("OPTIONS")) { >> =A0 return adapter.optionsEntry(context); >> } else { >> =A0 return null; >> } >> >> Nathan >> > > > >