Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 30293 invoked from network); 17 Jul 2007 17:57:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Jul 2007 17:57:32 -0000 Received: (qmail 11879 invoked by uid 500); 17 Jul 2007 17:57:28 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 11832 invoked by uid 500); 17 Jul 2007 17:57:28 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 11821 invoked by uid 99); 17 Jul 2007 17:57:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Jul 2007 10:57:28 -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; Tue, 17 Jul 2007 10:57:25 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id E0FE3714208 for ; Tue, 17 Jul 2007 10:57:04 -0700 (PDT) Message-ID: <3629429.1184695024918.JavaMail.jira@brutus> Date: Tue, 17 Jul 2007 10:57:04 -0700 (PDT) From: "Lord Halbert (JIRA)" To: axis-dev@ws.apache.org Subject: [jira] Updated: (AXIS-2519) array of Strings changed to in java2wsdl In-Reply-To: <10303986.1152254250789.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/AXIS-2519?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lord Halbert updated AXIS-2519: ------------------------------- Affects Version/s: 1.3 1.2.1 1.2 > array of Strings changed to in java2wsdl > ------------------------------------------------------------------------------------- > > Key: AXIS-2519 > URL: https://issues.apache.org/jira/browse/AXIS-2519 > Project: Axis > Issue Type: Bug > Components: WSDL processing > Affects Versions: 1.2, 1.2.1, 1.3, 1.4 > Environment: Windows XPSP2, SUN's java 1.4.2_11-b06. > Reporter: Grzegorz Grzybek > Priority: Blocker > > I used wsdl2Java and my xsd:complexType, which uses array of strings is properly converted into java.lang.String[]. But when the web service is published and URL with ?wsdl param is used, the generated wsdl says, that my type is simple xsd:string, and not ArrayOfStrings. > You can easily reproduce this bug - just run the "echo" sample from axis-1.4-src/samples/echo and see http://localhost:8080/axis/services/echo?wsdl and particulary - definition - it's always wrong. > The TestClient runs fine - it sends array of strings, but we're talking about interoperability - te generated "?wsdl" document is used in .NET environment to generate ws proxies - and instead of string[] there is simply string property. > It helps when one add: > elemField.setItemQName(new QName("http://www.w3.org/2001/XMLSchema", "string")); > in the static {} block in generated SOAPArrayStruct.java. > I think the problem is in org.apache.axis.encoding.ser.BeanSerializer.writeField() method: > both the conditions: > if (!SchemaUtils.isSimpleSchemaType(xmlType) && > Types.isArray(fieldType)) { > xmlType = null; > } > if (itemQName != null && > SchemaUtils.isSimpleSchemaType(xmlType) && > Types.isArray(fieldType)) { > xmlType = null; > } > are not met and the information that the element is array is lost. One of these conditions is met when the array elements are NOT simple schema types. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org For additional commands, e-mail: axis-dev-help@ws.apache.org