I was under impression that
rm -r *.xml
would remove all file from parent and child however:
*.xml: No such file or directory
An easy way to do is
rm -f *.xml
This will remove all .xml files from current directory.