The following issue has been updated:
Updater: Steve Green (mailto:steve.green@epok.net)
Date: Wed, 1 Sep 2004 11:40 AM
Comment:
New patch, but with unified context.
Changes:
Attachment changed to 1488.patch
---------------------------------------------------------------------
For a full history of the issue, see:
http://issues.apache.org/jira/browse/AXIS-1488?page=history
---------------------------------------------------------------------
View the issue:
http://issues.apache.org/jira/browse/AXIS-1488
Here is an overview of the issue:
---------------------------------------------------------------------
Key: AXIS-1488
Summary: xs:list itemTypes are forced into namespace {http://www.w3.org/2001/XMLSchema}
Type: Bug
Status: Unassigned
Priority: Major
Project: Axis
Components:
WSDL processing
Versions:
beta-3
Assignee:
Reporter: Steve Green
Created: Tue, 3 Aug 2004 1:51 PM
Updated: Wed, 1 Sep 2004 11:40 AM
Description:
Generated code from xs:list items uses the wrong namespace for the list. Attached is some
wsdl that demonstrates the problem. newEntryIDs is class ModifyResponseType gets generated
like this:
org.w3.www._2001.XMLSchema.IDReferenceType[] newEntryIDs;
The reason for this is in SchemaUtils.getListItemType(). The code in question finds the array
type, throws away any namespace prefix, and returns a QName in org.w3.www._2001.XMLSchema.
return new QName(Constants.URI_2001_SCHEMA_XSD, type + "[]");
Also attached is a patch that partially fixes the problem. The patch will attempt to find
the QName of the base type for the array. I call this a partial fix because my patch does
not throw an exception if the list item type cannot be found in the symbol table. I also
suspect that there might be a better way to solve the problem.
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
|