[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: OpenEdge.http.net.pl server SOAP+XML response into a Longchar?

  • Thread starter Thread starter goo
  • Start date Start date
Status
Not open for further replies.
G

goo

Guest
Why not do it like this? Should be pretty easy to trranslate to OE... using System.IO; using System.Net; String URI = " somesite.com/somepage.html"; WebClient webClient = new WebClient(); Stream stream = webClient.OpenRead(URI); String request = reader.ReadToEnd();

Continue reading...
 
Status
Not open for further replies.
Back
Top