Curious why when I try to send the simple XML

<Product>
        <child >some text</child>
</Product>

using axis "message" style, out the other side comes:

<?xml version="1.0" encoding="UTF-8"?>
<Product>
    <child xmlns="">some text</child>
</Product>

Note the empty namespace string.

Are namespaces required on all elements? And if so, why isn't one being put on the outer element?

The inner element is being created as a child MessageElement by MessageElement.copyNode() when I create my SOAPBodyElement from the raw XML element.

The outer SOAPBodyElement has a null namespaceURI, so I tried forcing the inner child element to have a null namespaceURI string, but it still seems to come out with the empty namespace string.

Any thoughts?

Linus Kamb
[EMAIL PROTECTED]
(206) 547-0393 x106



Reply via email to