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.  Is there anyway 
that I can get a 1.1.1 release with these fixes?

Thanks,

Nathan


-----Original Message-----
From: ant elder [mailto:[email protected]]
Sent: Thu 8/12/2010 1:59 AM
To: [email protected]
Subject: Re: EntryRequestProcessor and MediaRequestProcessor do not support 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.

   ...ant

On Thu, Jul 29, 2010 at 3:51 PM, Reese, Nathan
<[email protected]> wrote:
> Is there a reason why the EntryRequestProcessor and MediaRequestProcessor 
> processEntry methods do not handle POST requests?  This seems like a bug to 
> me.  I am using abdera 1.1 release.
>
> String method = context.getMethod();
> if (method.equalsIgnoreCase("GET")) {
>   return adapter.getEntry(context);
> } else if (method.equalsIgnoreCase("PUT")) {
>   return adapter.putEntry(context);
> } else if (method.equalsIgnoreCase("DELETE")) {
>   return adapter.deleteEntry(context);
> } else if (method.equalsIgnoreCase("HEAD")) {
>   return adapter.headEntry(context);
> } else if (method.equalsIgnoreCase("OPTIONS")) {
>   return adapter.optionsEntry(context);
> } else {
>   return null;
> }
>
> Nathan
>

Reply via email to