Bingo! Working.
But take a look at this:
<ns2:logon xmlns:ns2="http://my.test/">
<user>user</user>
<passwd>xxx</passwd>
</ns2:logon>
Is it an XML? For me, Its not valid.
http://www.w3schools.com/xml/xml_namespaces.asp
In my understanding, right versions are
Either:
<x:logon xmlns:x="http://my.test/">
<x:user>user</x:user>
<x:passwd>xxx</x:passwd>
</x:logon>
OR:
<logon xmlns="http://my.test/">
<user>user</user>
<passwd>xxx</passwd>
</logon>
But not the glassfish's one.
Just to mention that last two versions don't work with glassfish.
I humbly thank for any clarification.
Alexandre
[Message sent by forum member 'aefremov' (aefremov)]