Hi!
I have discovered that the new release Android System WebView (version 55.028883.91) is blocking http calls that return a service table of plain text.
Below is an example displaying the service information of NTRIP-protocoll in a webview.
( https://en.wikipedia.org/wiki/Networked_Transport_of_RTCM_via_Internet_Protocol)
Calling the NTRIP service http://46.234.104.137:2101 gives this result:
SOURCETABLE 200 OK
Server: TopNET-V 10.0p4/1.0
Content-Type: text/plain
Content-Length: 889
......
However with the new Android System WebView (version 55.028883.91) installed on my phone I get this error message:
ERR_INVALID_HTTP_RESPONSE
Is socket programming the only work around and solution to this problem?
I have discovered that the new release Android System WebView (version 55.028883.91) is blocking http calls that return a service table of plain text.
Below is an example displaying the service information of NTRIP-protocoll in a webview.
( https://en.wikipedia.org/wiki/Networked_Transport_of_RTCM_via_Internet_Protocol)
B4X:
Dim webNTRIPService As WebView
..
webNTRIPService.LoadUrl("http://" &IP& ":" &Port )
Calling the NTRIP service http://46.234.104.137:2101 gives this result:
SOURCETABLE 200 OK
Server: TopNET-V 10.0p4/1.0
Content-Type: text/plain
Content-Length: 889
......
However with the new Android System WebView (version 55.028883.91) installed on my phone I get this error message:
ERR_INVALID_HTTP_RESPONSE
Is socket programming the only work around and solution to this problem?