Step 1 The following code displays a realtime video from a local IP webcam : webview1.Initialize("webview1") Activity.AddView (webview1,0,0,100%x,100%y) URL="http://admin:@192......1/video2.mjpg" ' OK (va bene in locale, con wifi webview1.LoadUrl(URL) Step 2 The following HTML code...
Dim URL As String
Dim webview1 As WebView
Dim WebViewExtras1 As WebViewExtras
webview1.Initialize("webview1")
Activity.AddView (webview1,0,0,100%x,100%y)
URL="https://192.168.0.200"
WebViewExtras1.addWebChromeClient(webview1, "WebViewExtras1")
webview1.LoadUrl(URL)
BUT EMPTY PAGE IS RESULT!!!
What i doing wrong?
I try and "your app has a uniquePackage Name "
Erel say that You can disable the SSL tests with this Code Byt still empty page is result
Hello, i have a task to create web site with MSSQL database and ASP.NET C# MVC but this site MUST be accessable only from users with my B4A app and not accessable from web browsers and other phones with different IMEI... I can use HttpJob like this code to receive data or entire web page and...