Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
C# Code to VFP
Message
From
19/11/2003 08:19:35
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Visual FoxPro and .NET
Title:
C# Code to VFP
Miscellaneous
Thread ID:
00851369
Message ID:
00851369
Views:
35
Hi!

Can we convert this C# code into VFP?

Need to call a WebService and pass it an XMl Doc's node representing the cd element node.

Thanks in advance.

Sarosh


string xmlPath = @"c:\temp2\ApDataImport.xml";
string sResult;

// Send XmlNode
XmlDocument doc = new XmlDocument();
XmlTextReader reader = new XmlTextReader(xmlPath);

reader.MoveToContent(); //Move to the cd element node.

//Create a node representing the cd element node.
XmlNode cd = doc.ReadNode(reader);

Service1 proxy = new Service1();
sResult = proxy.ApDataXmlNodeMethod(cd);

Next
Reply
Map
View

Click here to load this message in the networking platform