Return-Path: Delivered-To: apmail-incubator-cxf-dev-archive@locus.apache.org Received: (qmail 71491 invoked from network); 2 Apr 2008 13:19:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Apr 2008 13:19:57 -0000 Received: (qmail 45965 invoked by uid 500); 2 Apr 2008 13:19:56 -0000 Delivered-To: apmail-incubator-cxf-dev-archive@incubator.apache.org Received: (qmail 45913 invoked by uid 500); 2 Apr 2008 13:19:56 -0000 Mailing-List: contact cxf-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-dev@incubator.apache.org Received: (qmail 45904 invoked by uid 99); 2 Apr 2008 13:19:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Apr 2008 06:19:56 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_OPENWHOIS,SPF_HELO_PASS,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Apr 2008 13:19:05 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1Jh2s9-0002PE-M0 for cxf-dev@incubator.apache.org; Wed, 02 Apr 2008 06:19:25 -0700 Message-ID: <16447027.post@talk.nabble.com> Date: Wed, 2 Apr 2008 06:19:25 -0700 (PDT) From: Chico Charlesworth To: cxf-dev@incubator.apache.org Subject: Issue CXF 1494 (Issue Using JAX-RS / REST When AOP Proxy Is In Place) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: chico.charlesworth@googlemail.com X-Virus-Checked: Checked by ClamAV on apache.org Hi, I've come across an issue which I think has been already found but yet to be fixed: https://issues.apache.org/jira/browse/CXF-1494 I'm using CXF's 2.1-incubator-SNAPSHOT version, and I have an issue with JAX-RS/REST and Spring's @Transactional annotation. Here's the implementation class: @WebService(endpointInterface = "admin.AdminService") @Path("/admin/") @Transactional(propagation = Propagation.REQUIRED) public class AdminServiceImpl AdminService { @GET @Path("/ping/") public String ping() { return "Ping Successfull"; } } As it is, it fails with "No operation found for path", but if I remove the @Transaction annotation it works fine. My questions are: - Is my issue arising from the same problem as CXF 1494? - If so, when can I expect it to be fixed? - Is there a current workaround? Cheers Chico -- View this message in context: http://www.nabble.com/Issue-CXF-1494-%28Issue-Using-JAX-RS---REST-When-AOP-Proxy-Is-In-Place%29-tp16447027p16447027.html Sent from the cxf-dev mailing list archive at Nabble.com.