trying to get the product list when asking for first 100 products.
Dim oXml As XmlDocument = GetProduct(i, 100)
oXml.SelectNodes("/getProductResponse/getProductResult/GetProductDetailsResponse/Product")
I cant seem to put anything that works in the SelectNodes call.
this i have that works but I dont like how it calls each node group by index=0
oXml.ChildNodes(1).ChildNodes(0).ChildNodes(0).Chi ldNodes(0).ChildNodes(0).ChildNodes()
the reason I dont use oXml.GetElementsByTagName("Product") is because each product has a sub nodes named Product also.
surely someone out there is using a parser on the API?
Doug
Dim oXml As XmlDocument = GetProduct(i, 100)
oXml.SelectNodes("/getProductResponse/getProductResult/GetProductDetailsResponse/Product")
I cant seem to put anything that works in the SelectNodes call.
this i have that works but I dont like how it calls each node group by index=0
oXml.ChildNodes(1).ChildNodes(0).ChildNodes(0).Chi ldNodes(0).ChildNodes(0).ChildNodes()
the reason I dont use oXml.GetElementsByTagName("Product") is because each product has a sub nodes named Product also.
surely someone out there is using a parser on the API?
Doug