B
Bishop
I use the following code to consume a XML feed and populate a dataset.
Dim myReader As System.Xml.XmlTextReader = New
System.Xml.XmlTextReader(myXMLURL)
Dim ds As Data.DataSet = New Data.DataSet()
ds.ReadXml(myReader)
Can anyone point me in the right direction for changing this code to pass a
parameter. In this case I'm going to the XML feed and calling the method
GetInventory but I need to pass my CustomerID when calling the method.
Dim myReader As System.Xml.XmlTextReader = New
System.Xml.XmlTextReader(myXMLURL)
Dim ds As Data.DataSet = New Data.DataSet()
ds.ReadXml(myReader)
Can anyone point me in the right direction for changing this code to pass a
parameter. In this case I'm going to the XML feed and calling the method
GetInventory but I need to pass my CustomerID when calling the method.