Subject: | empty uri with register_ns |
I set a namespace with a prefix like this:
$soap->serializer->register_ns('uri:kow' => 'xmlns:q0');
$soap->envprefix('soapenv');
$soap->on_action(sub{ '' });
$soap->autotype(0);
$soap->ns('','q0');
When generating a request, the namespace declared with register_ns in soapenv:Envelope element is empty in about 40% of requests:
xmlns:q0="" or correctly xmlns:q0="uri:kow"
I tested this behaviour with 1.06, 1.10, 1.11 versions.
Requests generation works ok with SOAP::Lite version 0.716.
Radek