Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Converting a vfp7 cursor to c# dataset
Message
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Web Services
Title:
Converting a vfp7 cursor to c# dataset
Miscellaneous
Thread ID:
01077592
Message ID:
01077592
Views:
82
I'm calling a c# web service (vs 2005) from vfp7. What I have to do is: (1) Convert vfp7 cursor to xml, (2) pass the xml string to the ws method, and (3) create dataset from the xml string.

Code in vfp7 side:
----------------------

o = CREATEOBJECT("MSSoap.SoapClient")

=o.MSSoapInit("http://localhost:2947/ChangeBomSkuProcess/Service.asmx?WSDL")
=CursorToXML("CsrAllSkus", "cTestxml")
?o.UpadateOrderDetailComponent(cTestxml)


code in c# side:
---------------------

[WebMethod]
public bool UpadateOrderDetailComponent(string xmlRplSkus)
{
XmlDataDocument xmlDataDocument = new XmlDataDocument();
xmlDataDocument.LoadXml(xmlRplSkus);
DataSet ds = xmlDataDocument.DataSet;
.
.
.
return true;
}


Now, when I step thru the code in C#, in the watch window ds is of type dataset. But the dataset is empty.

Am I using the right command to convert the xml string to a dataset?
Next
Reply
Map
View

Click here to load this message in the networking platform