This is something that has stumped me.  
I cannot figure out why the following URL:
	
works in Chrome and Edge but will not load in webview. This is just a simple apache test page. Nothing complex at all.
I wrote a simple B4J App to test it out. Just one webview control and nothing else. See below - this is the whole program:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
I tried various web sites like google, etc. It works fine. But I just get a blank screen with the URL "https://strikenet-tx.com/apache.html". And like I said. This URL/page loads fine in all other browsers.
Any suggestions would be appreciated. I have spent a whole day trying to figure this out and I give up!
Thanks!
			
			I cannot figure out why the following URL:
works in Chrome and Edge but will not load in webview. This is just a simple apache test page. Nothing complex at all.
I wrote a simple B4J App to test it out. Just one webview control and nothing else. See below - this is the whole program:
			
				B4X:
			
		
		
		#Region Project Attributes
    #MainFormWidth: 600
    #MainFormHeight: 600
#End Region
Sub Process_Globals
    Private fx As JFX
    Private MainForm As Form
    Private xui As XUI
    Private WebView1 As WebView
End Sub
Sub AppStart (Form1 As Form, Args() As String)
    MainForm = Form1
    MainForm.RootPane.LoadLayout("Layout1")
    MainForm.Show
    WebView1.LoadUrl("https://strikenet-tx.com/apache.html")
    'WebView1.LoadUrl("https://www.google.com")
End Sub
	I tried various web sites like google, etc. It works fine. But I just get a blank screen with the URL "https://strikenet-tx.com/apache.html". And like I said. This URL/page loads fine in all other browsers.
Any suggestions would be appreciated. I have spent a whole day trying to figure this out and I give up!
Thanks!