Hi,
I want to put xml sitemap to list, for example if I have xml code:
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
I use "Parsing XML" and XML to list, in Property I use urlset.url and in Subproperty I use loc and it is working fine, problem is when code is like this:
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
then name of this item is :
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
and then XML to list say: No such a name: url
								I want to put xml sitemap to list, for example if I have xml code:
			
				Код:
			
		
		
		<?xml version="1.0" encoding="UTF-8"?>
<urlset>
  <url>
    <loc>http://www.xxxxxx.com/home</loc>
  </url>
</urlset>
	
			
				Код:
			
		
		
		<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
  <url>
    <loc>http://www.xxxxxx.com/home</loc>
  </url>
</urlset>
	
			
				Код:
			
		
		
		{http://www.sitemaps.org/schemas/sitemap/0.9}urlset.{http://www.sitemaps.org/schemas/sitemap/0.9}url[0].{http://www.sitemaps.org/schemas/sitemap/0.9}loc
	