*/
private String determineWicketNamespace(final ComponentTag tag)
{
// For all tags attributes
final IValueMap attributes = tag.getAttributes();
for (Map.Entry<String, Object> entry : attributes.entrySet())
{
// Find attributes with namespace "xmlns"
final String attributeName = entry.getKey();
if (attributeName.startsWith(XMLNS))
{