Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 67450 invoked from network); 28 Sep 2007 15:18:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Sep 2007 15:18:23 -0000 Received: (qmail 41292 invoked by uid 500); 28 Sep 2007 15:18:13 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 41283 invoked by uid 500); 28 Sep 2007 15:18:13 -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 41274 invoked by uid 99); 28 Sep 2007 15:18:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Sep 2007 08:18:13 -0700 X-ASF-Spam-Status: No, hits=-97.3 required=10.0 tests=ALL_TRUSTED,DNS_FROM_DOB,RCVD_IN_DOB,WEIRD_PORT 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; Fri, 28 Sep 2007 15:18:11 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 02D1071420D for ; Fri, 28 Sep 2007 08:17:51 -0700 (PDT) Message-ID: <25956128.1190992671009.JavaMail.jira@brutus> Date: Fri, 28 Sep 2007 08:17:51 -0700 (PDT) From: "Ralf Sigmund (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Updated: (CXF-1079) wsdl2java fails to genrate wrapped style In-Reply-To: <19053904.1190986130986.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-1079?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ralf Sigmund updated CXF-1079: ------------------------------ Attachment: barewrapped.7z Reproduce CXF-1079 by executing the contained batch files. Installations of jax-ws-ri and apache cxf required. > wsdl2java fails to genrate wrapped style > ---------------------------------------- > > Key: CXF-1079 > URL: https://issues.apache.org/jira/browse/CXF-1079 > Project: CXF > Issue Type: Bug > Components: Tooling > Affects Versions: 2.0.2 > Environment: cxf 2.02 > Reporter: Ralf Sigmund > Attachments: barewrapped.7z > > > use a wsdl conforming to the jax-ws rules for document literal wrapped style. > wsdl2java generates BARE port type. jax-ws ri generates WRAPPED with the same wsdl. > Wsdl: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > cxf generated java: > @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) > @WebResult(targetNamespace = "http://www.kba.de/pass", partName = "parametersInfoResponse", name = "infoResponse") > @WebMethod(action = "http://www.kba.de/info") > public de.kba.pass.InfoResponse info( > @WebParam(targetNamespace = "http://www.kba.de/pass", partName = "parametersInfo", name = "info") > de.kba.pass.Info parametersInfo > ) throws Hinweis; > jax-ws ri generated java: > /** > * > * @param passwort > * @return > * returns de.kba.hinweis.HinweisTyp > */ > @WebMethod(action = "http://www.kba.de/Info") > @WebResult(name = "Hinweis", targetNamespace = "http://www.kba.de/hinweis") > @RequestWrapper(localName = "info", targetNamespace = "http://www.kba.de/pass", className = "de.kba.pass.Info") > @ResponseWrapper(localName = "infoResponse", targetNamespace = "http://www.kba.de/pass", className = "de.kba.pass.InfoResponse") > public HinweisTyp info( > @WebParam(name = "Passwort", targetNamespace = "http://www.kba.de/pass") > Passwort passwort); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.