Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
C# Code to VFP
Message
De
19/11/2003 08:19:35
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Visual FoxPro et .NET
Titre:
C# Code to VFP
Divers
Thread ID:
00851369
Message ID:
00851369
Vues:
36
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);

Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform