Return-Path: X-Original-To: apmail-openejb-users-archive@www.apache.org Delivered-To: apmail-openejb-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B6DABD3B0 for ; Wed, 22 Aug 2012 17:36:17 +0000 (UTC) Received: (qmail 64808 invoked by uid 500); 22 Aug 2012 17:36:09 -0000 Delivered-To: apmail-openejb-users-archive@openejb.apache.org Received: (qmail 64436 invoked by uid 500); 22 Aug 2012 17:36:09 -0000 Mailing-List: contact users-help@openejb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@openejb.apache.org Delivered-To: mailing list users@openejb.apache.org Received: (qmail 64256 invoked by uid 99); 22 Aug 2012 17:36:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Aug 2012 17:36:09 +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 (nike.apache.org: domain of todd.deshane.excelsior@gmail.com designates 209.85.214.196 as permitted sender) Received: from [209.85.214.196] (HELO mail-ob0-f196.google.com) (209.85.214.196) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Aug 2012 17:30:11 +0000 Received: by obhx4 with SMTP id x4so407183obh.11 for ; Wed, 22 Aug 2012 10:29:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=AyON9D/A3hig42+ui0UywNXpoGZm9RQ2Bo4MvdH0Gpk=; b=ITwqSNNDUjyoFBFKHOYkbC0tThhWltGTs8jhsAEqto9guPC6ioKF/p6XUA6mPRFPsC i8MAHr570QfYm8rWpSoewR7lx29nOYKaeKftlh7o+PM/ojF++2PqUu+O7cqXQAiJfDkD 3k7AavtwLTij4fL1m+ZxmZxAtT0eEMKeXpou7BhqbGGXPR2PLlMeOim4cX/OKI6SJeha 96lwzAxoCeXIH1pP77ADl0qm2xGCyo29+2vlH0shjJIOiFSTspBSBQVvhidpZG/h9oGz CTlmh+N7W5GXajtzk+qEqd5tbN/YyzKNhYj6UKxhinnOVLnza1Sm8iqQ3R+Usijk4uao yOUQ== MIME-Version: 1.0 Received: by 10.182.119.72 with SMTP id ks8mr16378639obb.10.1345656571592; Wed, 22 Aug 2012 10:29:31 -0700 (PDT) Received: by 10.76.97.228 with HTTP; Wed, 22 Aug 2012 10:29:31 -0700 (PDT) Date: Wed, 22 Aug 2012 13:29:31 -0400 Message-ID: Subject: HTTP Method Extensions From: Todd Deshane To: users@openejb.apache.org Content-Type: text/plain; charset=ISO-8859-1 Example ex04_1 implements a PATCH HTTP method extension [1], however, the findTargetMethod is not finding it. "HTTP Method: UNSUPPORTED" is being thrown by TomEE. Aug 22, 2012 1:06:38 PM org.apache.cxf.jaxrs.utils.JAXRSUtils findTargetMethod WARNING: No operation matching request path "/workbook-ex04_1-1.0/customers/1" is found, Relative Path: /1, HTTP Method: UNSUPPORTED, ContentType: application/xml, Accept: */*,. Please enable FINE/TRACE log level for more details. I was wondering if they is a way to get this to work? Thanks, Todd [1] https://github.com/resteasy/Resteasy/blob/master/jaxrs/examples/oreilly-workbook/ex04_1/src/main/java/org/ieft/annotations/PATCH.java