xml
xml copied to clipboard
Serializer wihout namespace
Hi,

I need to make this XML as you can see it doesn't have namespace, it's posible?
When I tried this:

The result is :

I want to avoid xmlns=""
Thanks for advance
If you register the empty namespace, you can see the xmlns appear just once in the root element, and not in every child element. Like this:
$service->namespaceMap[''] = '';
Does that help?