Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 40422 invoked from network); 5 Aug 2007 02:09:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Aug 2007 02:09:27 -0000 Received: (qmail 91241 invoked by uid 500); 5 Aug 2007 02:09:26 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 91225 invoked by uid 500); 5 Aug 2007 02:09:26 -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 91216 invoked by uid 99); 5 Aug 2007 02:09:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Aug 2007 19:09:26 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Aug 2007 02:09:02 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 31D627141F6 for ; Sat, 4 Aug 2007 19:08:54 -0700 (PDT) Message-ID: <15704186.1186279734201.JavaMail.jira@brutus> Date: Sat, 4 Aug 2007 19:08:54 -0700 (PDT) From: "Chris McClelland (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Updated: (CXF-884) Services using built-in types don't honour the @WebParam and @WebResult annotations' targetNamespace properties In-Reply-To: <24334142.1186266473020.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CXF-884?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris McClelland updated CXF-884: --------------------------------- Priority: Trivial (was: Minor) Issue Type: Wish (was: Bug) Lowered priority; changed to 'wish'. > Services using built-in types don't honour the @WebParam and @WebResult annotations' targetNamespace properties > --------------------------------------------------------------------------------------------------------------- > > Key: CXF-884 > URL: https://issues.apache.org/jira/browse/CXF-884 > Project: CXF > Issue Type: Wish > Affects Versions: 2.1 > Environment: Linux, SunJDK 1.6.0_01 > Reporter: Chris McClelland > Priority: Trivial > Fix For: 2.1 > > > You'd expect to be able to call a service with an SEI like this: > @WebService > public interface HelloWorld { > @WebResult(targetNamespace="http://foo.com", name="Result") > String sayHi( > @WebParam(targetNamespace="http://foo.com", name="A") > String text); > } > with a message like this: > > > > Dan > > > > ...and get a result like this: > > > > Hello Dan > > > > But unfortunately one has to call it like this ('sayHi' is in the http://foo.com namespace, but 'A' is in the default namespace): > > > > Dan > > > > And the response comes back like this ('sayHi' is in the http://foo.com namespace, but 'Result' is in the default namespace): > > > > Hello Dan > > > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.