I am looking for a way to automatically authenticate for a web site. I've got a WebView in my c# Windows Store App and I want to access a site that is password protected. WebView.Source= new URI("http://UserId:Password@foo.com/"); This is not working as I get a Security exception: A security problem [...] read more
I add MIME filter to my WebBrowser Control by IInternetSession.RegisterMimeFilter。 The MIME type is "text/html"。 The filter have a bug that the flash cant shown in some site such as "http://cn.yahoo.com/". I tryed add "" before the tag,noneffective。 I return data directly but falsh still invisible。 I set the IE [...] read more
I'm trying to make an automatic web program using C#, Selenium, Internet Explorer 11, Visual studio 2019 and Window 10. But I encounter the following problem. 1. When I try to access a web page and automatic login (It worked well when I use Python but C#) _driver.Navigate().GoToUrl("https://" + ID [...] read more
I want to create my own remote app for a domotic project which uses Domoticz, with Universal Apps (Win 10) in C#. I use Basic-Auth and it works perfectly with WinForm or WPF project, I can connect and get (in this case) or set values in the server : private [...] read more