schema parsing incorrect/incomplete for <element>
-------------------------------------------------
Key: WSIF-68
URL: http://issues.apache.org/jira/browse/WSIF-68
Project: Axis-WSIF
Type: Bug
Components: Basic Architecture
Versions: current (nightly)
Environment: Windows 2000 SP4, J2SE 1.4.2_05
Reporter: Jeff Greif
Priority: Minor
org.apache.wsif.schema.ElementType parsing incorrectly specifies the default
namespace for the "type" attribute of <xsd:element>, and fails to account for a
possible "ref=..." element.
Code diff:
cvs diff: Diffing .
Index: ElementType.java
===================================================================
RCS file: /home/cvspublic/ws-wsif/java/src/org/apache/wsif/schema/ElementType.ja
va,v
retrieving revision 1.7
diff -r1.7 ElementType.java
56c56,59
< elementType = getAttributeQName(el, "type", tns);
---
> // jgreif Webalo, Inc. -- incorrect to use tns as default namespace
> // for type or ref attribute value !
> // elementType = getAttributeQName(el, "type", tns);
> elementType = getAttributeQName(el, "type");
57a61,66
>
> // jgreif Webalo, Inc. -- ref attr may appear rather than name attr
> if (typeName == null) {
> typeName = getAttributeQName(el, "ref");
> }
>
--
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