Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 93700 invoked from network); 16 Apr 2008 15:36:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Apr 2008 15:36:27 -0000 Received: (qmail 52620 invoked by uid 500); 16 Apr 2008 15:36:27 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 52609 invoked by uid 500); 16 Apr 2008 15:36:27 -0000 Mailing-List: contact cxf-issues-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-issues@incubator.apache.org Received: (qmail 52600 invoked by uid 99); 16 Apr 2008 15:36:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 08:36:27 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 15:35:53 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B9A1C234C0D0 for ; Wed, 16 Apr 2008 08:33:21 -0700 (PDT) Message-ID: <1544126794.1208360001758.JavaMail.jira@brutus> Date: Wed, 16 Apr 2008 08:33:21 -0700 (PDT) From: "Simon Paredes (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Created: (CXF-1533) Clients generated with CXF from java using Aegis DataBinding and SimpleFrontEnd sends the header SoapAction empty. This prevent interaction with oracle soa products wich depends on this header to execute correctly. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Clients generated with CXF from java using Aegis DataBinding and SimpleFrontEnd sends the header SoapAction empty. This prevent interaction with oracle soa products wich depends on this header to execute correctly. ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Key: CXF-1533 URL: https://issues.apache.org/jira/browse/CXF-1533 Project: CXF Issue Type: Bug Components: Aegis Databinding Affects Versions: 2.0.5 Reporter: Simon Paredes it could be added to org.apache.cxf.service.factory.DefaultServiceConfiguration this implementation of the function getAction(): public String getAction(OperationInfo op, Method method) { String action = op.getName().getLocalPart(); if(StringUtils.isEmpty(action)){ action = method.getName(); } return action; } Wich is a first aproach, of course, but for the simple case it works. Actually org.apache.cxf.service.factory.DefaultServiceConfiguration has no implementation for getAction and org.apache.cxf.service.factory.AbstractServiceConfiguration returns null. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.