You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by "David Illsley (JIRA)" <ji...@apache.org> on 2008/12/17 21:06:44 UTC

[jira] Moved: (WSCOMMONS-414) Namespace issue in SOAP message generated

     [ https://issues.apache.org/jira/browse/WSCOMMONS-414?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Illsley moved AXIS2-4079 to WSCOMMONS-414:
------------------------------------------------

    Affects Version/s:     (was: 1.3)
                  Key: WSCOMMONS-414  (was: AXIS2-4079)
              Project: WS-Commons  (was: Axis 2.0 (Axis2))

> Namespace issue in SOAP message generated
> -----------------------------------------
>
>                 Key: WSCOMMONS-414
>                 URL: https://issues.apache.org/jira/browse/WSCOMMONS-414
>             Project: WS-Commons
>          Issue Type: Bug
>          Components: AXIOM
>         Environment: Windown XP, Sun JVM 1.5.0_10
>            Reporter: Krishna
>
> I am facing an issue with SOAP message generated by AXIS.
>  
> We have a SOAP request, which when we build and log it, gets logged as:
>  
> <OurService xmlns="http://www.somthing.com/ournamespace" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
>   <param1>
>     <arr:string>1</arr:string>
>     <arr:string>2</arr:string>
>   </param1>
>   <param2>ABC</param2>
> </OurService>
>  
> This is proper. But, when it is sent on the wire, it gets sent as:
>  
> <OurService xmlns="http://www.somthing.com/ournamespace">
>   <param1>
>     <string xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">1</string>
>     <string>2</string>
>   </param1>
>   <param2>ABC</param2>
> </OurService>
>  
> Note that the xmlns declaration for http://schemas.microsoft.com/2003/10/Serialization/Arrays happens only once - for the first child inside param1, instead of happening on each of them. 
>  
> I could trace it to OMSerializerUtil, where it is considering a namespace declaration generated at the sibling level as a namespace already written and hence need not be written again. 
> I already searched the net and the bugs in Axis and Axiom, but could not get to anything that resembles this behavior. So, logging it as a bug, as it looks like we have stumbled into an issue no one has probably faced before. 
>  

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