You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Italivio Correa (JIRA)" <ji...@apache.org> on 2010/01/16 14:03:55 UTC

[jira] Created: (AXIS2-4604) bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.

bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.
---------------------------------------------------------------------------------------------------

                 Key: AXIS2-4604
                 URL: https://issues.apache.org/jira/browse/AXIS2-4604
             Project: Axis2
          Issue Type: Bug
          Components: om
    Affects Versions: 1.2
         Environment: Linux Ubuntu
            Reporter: Italivio Correa
            Priority: Critical
             Fix For: 1.2


In class StAXOMBuilder found an error in the method processNamespaceData. The command if (namespaceURI! = Null & & namespaceURI.length ()> 0) is wrong, should be so if (namespaceURIFromParser! = Null & & namespaceURIFromParser.length ()> 0). This error is generating wrong namespace for the tags.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AXIS2-4604) bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.

Posted by "Andreas Veithen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-4604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801505#action_12801505 ] 

Andreas Veithen commented on AXIS2-4604:
----------------------------------------

Sorry, but I don't understand your last comment. Does it mean that by replacing Axiom with a more recent version the problem disappears?

> bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.
> ---------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-4604
>                 URL: https://issues.apache.org/jira/browse/AXIS2-4604
>             Project: Axis2
>          Issue Type: Bug
>          Components: om
>    Affects Versions: 1.2
>         Environment: Linux Ubuntu
>            Reporter: Italivio Correa
>            Priority: Critical
>             Fix For: 1.2
>
>
> In class StAXOMBuilder found an error in the method processNamespaceData. The command if (namespaceURI! = Null & & namespaceURI.length ()> 0) is wrong, should be so if (namespaceURIFromParser! = Null & & namespaceURIFromParser.length ()> 0). This error is generating wrong namespace for the tags.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AXIS2-4604) bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.

Posted by "Andreas Veithen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-4604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801228#action_12801228 ] 

Andreas Veithen commented on AXIS2-4604:
----------------------------------------

Can you provide a test case or test this with a more recent version of Axiom/Axis2?

> bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.
> ---------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-4604
>                 URL: https://issues.apache.org/jira/browse/AXIS2-4604
>             Project: Axis2
>          Issue Type: Bug
>          Components: om
>    Affects Versions: 1.2
>         Environment: Linux Ubuntu
>            Reporter: Italivio Correa
>            Priority: Critical
>             Fix For: 1.2
>
>
> In class StAXOMBuilder found an error in the method processNamespaceData. The command if (namespaceURI! = Null & & namespaceURI.length ()> 0) is wrong, should be so if (namespaceURIFromParser! = Null & & namespaceURIFromParser.length ()> 0). This error is generating wrong namespace for the tags.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AXIS2-4604) bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.

Posted by "Italivio Correa (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-4604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801742#action_12801742 ] 

Italivio Correa commented on AXIS2-4604:
----------------------------------------

I'm not using the framework AXIS2, but the SPRING-WS factory configured as
message AXIOM. I use the jars AXIOM-API and AXIOM-IMPL version 1.2.8.

2010/1/18 Italivio Correa (JIRA) <ji...@apache.org>



> bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.
> ---------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-4604
>                 URL: https://issues.apache.org/jira/browse/AXIS2-4604
>             Project: Axis2
>          Issue Type: Bug
>          Components: om
>    Affects Versions: 1.2
>         Environment: Linux Ubuntu
>            Reporter: Italivio Correa
>            Priority: Critical
>             Fix For: 1.2
>
>
> In class StAXOMBuilder found an error in the method processNamespaceData. The command if (namespaceURI! = Null & & namespaceURI.length ()> 0) is wrong, should be so if (namespaceURIFromParser! = Null & & namespaceURIFromParser.length ()> 0). This error is generating wrong namespace for the tags.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AXIS2-4604) bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.

Posted by "Italivio Correa (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-4604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801731#action_12801731 ] 

Italivio Correa commented on AXIS2-4604:
----------------------------------------

Andreas, sorry my English is limited. But I'm using the latest version of
Axiom (1.2.8). This version is what is the problem. I made the suggested
change in class StAXOMBuilder and recompiled and it worked. I wish this
change was included in the next version of AXIOM. If you want I can send the
class with the modification that I made.

2010/1/17 Andreas Veithen (JIRA) <ji...@apache.org>



> bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.
> ---------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-4604
>                 URL: https://issues.apache.org/jira/browse/AXIS2-4604
>             Project: Axis2
>          Issue Type: Bug
>          Components: om
>    Affects Versions: 1.2
>         Environment: Linux Ubuntu
>            Reporter: Italivio Correa
>            Priority: Critical
>             Fix For: 1.2
>
>
> In class StAXOMBuilder found an error in the method processNamespaceData. The command if (namespaceURI! = Null & & namespaceURI.length ()> 0) is wrong, should be so if (namespaceURIFromParser! = Null & & namespaceURIFromParser.length ()> 0). This error is generating wrong namespace for the tags.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AXIS2-4604) bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.

Posted by "Italivio Correa (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-4604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801496#action_12801496 ] 

Italivio Correa commented on AXIS2-4604:
----------------------------------------

I'm using the latest version of the axiom-api-1.2.8. In this version by
modifying the XML sent by the client, ie the namespace. I made the changes
you suggested, and went on to work correctly, or not to modify the namespace
in the XML sent by the customers. So I suggested this fix, so I can take the
AXIS in the development of web services we are doing.

2010/1/16 Andreas Veithen (JIRA) <ji...@apache.org>



> bug in axiom-api class StAXOMBuilder n the method processNamespaceData, generating wrong namespace.
> ---------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-4604
>                 URL: https://issues.apache.org/jira/browse/AXIS2-4604
>             Project: Axis2
>          Issue Type: Bug
>          Components: om
>    Affects Versions: 1.2
>         Environment: Linux Ubuntu
>            Reporter: Italivio Correa
>            Priority: Critical
>             Fix For: 1.2
>
>
> In class StAXOMBuilder found an error in the method processNamespaceData. The command if (namespaceURI! = Null & & namespaceURI.length ()> 0) is wrong, should be so if (namespaceURIFromParser! = Null & & namespaceURIFromParser.length ()> 0). This error is generating wrong namespace for the tags.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.