You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xmlbeans.apache.org by "Jacob Danner (JIRA)" <xm...@xml.apache.org> on 2005/04/19 21:44:54 UTC

[jira] Closed: (XMLBEANS-57) scomp failure for XSD namespace "DAV:"

     [ http://issues.apache.org/jira/browse/XMLBEANS-57?page=all ]
     
Jacob Danner closed XMLBEANS-57:
--------------------------------

    Assign To:     (was: Jacob Danner)

Fix verified, regression case automated, closing

> scomp failure for XSD namespace "DAV:"
> --------------------------------------
>
>          Key: XMLBEANS-57
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-57
>      Project: XMLBeans
>         Type: Bug
>   Components: Compiler
>     Versions: Version 1.0.3
>  Environment: Faced this problem on Windows XP professional SUN JDK 1.4.2
> XMLBeans 1.0.3
>     Reporter: Subramanian Venkatesan
>      Fix For: Version 2 Beta 1

>
> I had a problem compiling a WebDAV XSD like so:
> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 
> elementFormDefault="qualified" targetNamespace="DAV:" xmlns="DAV:" > ... </xs:schema>
> The scomp command was choking on the "DAV:" when it tried to generate a 
> package name from the XSD.
> The problem was happening due to a namespace of "DAV:" in the XSD. I changed the org.apache.xmlbeans.impl.common.NameUtil Java file line 529 to
> 	if (buf.length() > 0)
> 	{
>         	return buf.substring(0, buf.length() - 1); // chop off extra dot
> 	}
> 	else
> 	{
>         	return buf.toString(); // chop off extra dot
> 	}
> From 
>      	return buf.substring(0, buf.length() - 1); // chop off extra dot
> Now, it seems to work...

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org