Is there a simple web server for B4A ie library I am missing that will allow a B4A app to connect to it's self locally to by-pass the stupid built in security to run JavaScript and html5 in our webviews?
How does phone gap get around this, wonder if it has a built in web server, seems to me we could really open up some awesome possibilities with html5 in our apps.
Sub Activity_Resume
If Server.IsInitialized Then
Server.Listen
Log("Continue Listening")
Else
Server.Initialize(HTTP.DefaultPort, "Server")
Server.Listen
HTTP.AddDefaultDirectories
Log("Re-initialized Listening")
End If
End Sub