Return-Path: Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: (qmail 76231 invoked from network); 29 Aug 2008 20:02:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Aug 2008 20:02:46 -0000 Received: (qmail 98574 invoked by uid 500); 29 Aug 2008 20:02:44 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 98565 invoked by uid 500); 29 Aug 2008 20:02:44 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 98551 invoked by uid 99); 29 Aug 2008 20:02:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Aug 2008 13:02:44 -0700 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT 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; Fri, 29 Aug 2008 20:01:43 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4A2FE234C1C4 for ; Fri, 29 Aug 2008 13:01:44 -0700 (PDT) Message-ID: <870377102.1220040104302.JavaMail.jira@brutus> Date: Fri, 29 Aug 2008 13:01:44 -0700 (PDT) From: "Nathan Deckard (JIRA)" To: issues@cxf.apache.org Subject: [jira] Created: (CXF-1772) Generated WSDL has a char MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Generated WSDL has a char ------------------------- Key: CXF-1772 URL: https://issues.apache.org/jira/browse/CXF-1772 Project: CXF Issue Type: Bug Components: Aegis Databinding Affects Versions: 2.1.1 Reporter: Nathan Deckard My .aegis.xml mappings are not overriding a char that is showing up in the generated WSDL. The char is causing SOAPUI to error out because char does not exist in the http://schemas.xmlsoap.org/soap/encoding/ schema. NathansCharImpl.aegis.xml: @WebService @Features(features = "org.apache.cxf.feature.LoggingFeature") public interface NathansCharacter { public abstract Character getMyCharacter(); public abstract void setMyCharacter(Character myCharacter); } @WebService (endpointInterface = "com.clearingcorp.riskmanagement.ws.NathansCharacter") @Features(features = "org.apache.cxf.feature.LoggingFeature") public class NathansCharacterImpl implements NathansCharacter { private Character myCharacter; public Character getMyCharacter() { return myCharacter; } public void setMyCharacter(Character myCharacter) { this.myCharacter = myCharacter; } } The error from SOAPUI: Fri Aug 29 14:55:49 CDT 2008:ERROR:org.apache.xmlbeans.XmlException: http://localhost:7003/riskmanagement-wsserver/myCharacterService?wsdl:0: error: src-resolve: type 'char@http://schemas.xmlsoap.org/soap/encoding/' not found. org.apache.xmlbeans.XmlException: http://localhost:7003/riskmanagement-wsserver/myCharacterService?wsdl:0: error: src-resolve: type 'char@http://schemas.xmlsoap.org/soap/encoding/' not found. at org.apache.xmlbeans.impl.schema.SchemaTypeSystemCompiler.compile(SchemaTypeSystemCompiler.java:225) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.apache.xmlbeans.XmlBeans.compileXmlBeans(XmlBeans.java:667) at org.apache.xmlbeans.XmlBeans.compileXsd(XmlBeans.java:553) at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.buildSchemaTypes(SchemaUtils.java:266) at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.loadSchemaTypes(SchemaUtils.java:179) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext.loadDefinitions(WsdlContext.java:264) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext.access$500(WsdlContext.java:53) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext$Loader.construct(WsdlContext.java:218) at com.eviware.soapui.support.swing.SwingWorkerDelegator.construct(SwingWorkerDelegator.java:45) at com.eviware.soapui.support.swing.SwingWorker$2.run(SwingWorker.java:111) at java.lang.Thread.run(Unknown Source) Fri Aug 29 14:55:49 CDT 2008:ERROR:com.eviware.soapui.impl.wsdl.support.xsd.SchemaException com.eviware.soapui.impl.wsdl.support.xsd.SchemaException at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.buildSchemaTypes(SchemaUtils.java:273) at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.loadSchemaTypes(SchemaUtils.java:179) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext.loadDefinitions(WsdlContext.java:264) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext.access$500(WsdlContext.java:53) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext$Loader.construct(WsdlContext.java:218) at com.eviware.soapui.support.swing.SwingWorkerDelegator.construct(SwingWorkerDelegator.java:45) at com.eviware.soapui.support.swing.SwingWorker$2.run(SwingWorker.java:111) at java.lang.Thread.run(Unknown Source) Fri Aug 29 14:55:49 CDT 2008:ERROR:com.eviware.soapui.impl.wsdl.support.xsd.SchemaException: Error loading schema types com.eviware.soapui.impl.wsdl.support.xsd.SchemaException: Error loading schema types at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.loadSchemaTypes(SchemaUtils.java:184) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext.loadDefinitions(WsdlContext.java:264) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext.access$500(WsdlContext.java:53) at com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext$Loader.construct(WsdlContext.java:218) at com.eviware.soapui.support.swing.SwingWorkerDelegator.construct(SwingWorkerDelegator.java:45) at com.eviware.soapui.support.swing.SwingWorker$2.run(SwingWorker.java:111) at java.lang.Thread.run(Unknown Source) Caused by: com.eviware.soapui.impl.wsdl.support.xsd.SchemaException at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.buildSchemaTypes(SchemaUtils.java:273) at com.eviware.soapui.impl.wsdl.support.xsd.SchemaUtils.loadSchemaTypes(SchemaUtils.java:179) ... 6 more -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.