[jbossws-issues] [JBoss JIRA] Updated: (JBWS-2592) javax.xml.rpc.encoding.XMLType QName constants have wrong namespace URIs

Alessio Soldano (JIRA) jira-events at lists.jboss.org
Wed Jan 13 07:39:30 EST 2010


     [ https://jira.jboss.org/jira/browse/JBWS-2592?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alessio Soldano updated JBWS-2592:
----------------------------------

      Component/s: jbossws-jaxrpc
                       (was: jbossws-native)
    Fix Version/s: jbossws-native-3.3.0


> javax.xml.rpc.encoding.XMLType QName constants have wrong namespace URIs
> ------------------------------------------------------------------------
>
>                 Key: JBWS-2592
>                 URL: https://jira.jboss.org/jira/browse/JBWS-2592
>             Project: JBoss Web Services
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: jbossws-jaxrpc
>    Affects Versions: jbossws-native-3.1.0
>         Environment: JBoss 4.2 or later
>            Reporter: Dmitriy Kuznetsov
>             Fix For: jbossws-native-3.3.0
>
>
> The javax.xml.rpc.encoding.XMLType class in JBossWS incorrectly defines the QName constants. For example SOAP_STRING is defined as:
>     public static final QName SOAP_STRING = QName.valueOf("{SOAP-ENC}string");
> It must be defined as
>     public static final QName SOAP_STRING = QName.valueOf("{http://schemas.xmlsoap.org/soap/encoding/}string");
> or
>     public static final QName SOAP_STRING = new QName("http://schemas.xmlsoap.org/soap/encoding/", "string");
> Generally, the namespace URI must be http://schemas.xmlsoap.org/soap/encoding/ for the SOAP_xxx constants and http://www.w3.org/2001/XMLSchema for the XSD_xxx constants.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jbossws-issues mailing list