Size: 491
Comment:
|
← Revision 3 as of 2015-04-05 01:21:47 ⇥
Size: 516
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 17: | Line 17: |
CategoryDyalogExamplesDotNet CategoryDotNet | CategoryDotNet - CategoryDyalogDotNet - CategoryDyalogExamplesDotNet |
GetViaHttp
Need to get an ordinary HTML page? The following code is doing just that by calling a couple of .NET calls:
s←GetViaHttp url;⎕USING;wrq;wr;str;rdr ⍝ Get a web resource via HTTP ⎕USING←'System,System.dll' 'System.Net' 'System.IO' 'System.Text' wrq←HttpWebRequest.Create⊂url wr←wrq.GetResponse str←wr.GetResponseStream rdr←⎕NEW StreamReader str s←rdr.ReadToEnd str.Close
CategoryDotNet - CategoryDyalogDotNet - CategoryDyalogExamplesDotNet