G
goo
Guest
By doing this, I am able to connect: USING System.IO.*. USING System.Net.*. DEFINE VARIABLE oReq AS System.Net.WebRequest NO-UNDO. DEFINE VARIABLE oResp AS System.Net.WebResponse NO-UNDO. DEFINE VARIABLE oDS AS System.IO.Stream NO-UNDO. DEFINE VARIABLE oReader AS System.IO.StreamReader NO-UNDO. DEFINE VARIABLE lc AS LONGCHAR NO-UNDO. oReq = WebRequest:Create(' linuxutvp1.xxxx.no:9090'). oReq:Credentials = NEW NetworkCredential('xxx','yyy'). oReq:Method = 'GET'. oResp = oReq:GetResponse(). Now I want to call my webbrowser object with the url and credentials. Is that possible? I am using a program with this object..... System.Windows.Forms.WebBrowser
Continue reading...
Continue reading...