Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 11907 invoked by uid 500); 29 Oct 2002 01:54:51 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 11898 invoked from network); 29 Oct 2002 01:54:51 -0000 Message-ID: <002901c27eee$49f38ed0$1219570f@ranier> From: "Steve Loughran" To: "axis-dev" Subject: wsdl2java generating odd javacode Date: Mon, 28 Oct 2002 17:55:39 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-MailScanner: Found to be clean X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N xdoclet1.2 is whining on axis generated code. the problem is that after static stuff (a class from schema, btw), a semi colon is going in the source: static { org.apache.axis.description.FieldDesc field = new org.apache.axis.description.ElementDesc(); field.setFieldName("jobURI"); field.setXmlName(new javax.xml.namespace.QName("", "jobURI")); field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); typeDesc.addFieldDesc(field); ... field = new org.apache.axis.description.ElementDesc(); field.setFieldName("comments"); field.setXmlName(new javax.xml.namespace.QName("", "comments")); field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); typeDesc.addFieldDesc(field); }; I dont think you need the closing ; -looks like javac and jikes ignore it, but xjavadoc isnt happy. I'd file this on bugzilla if it was working today