Hello Experts...
is it possible to get the PORT of a HTTP-Request GET?
With the following Code i only get the IP:
With the UDP-Lib Packet5000.port is it possible - why not with HTTP Server.
Thx
Tom
is it possible to get the PORT of a HTTP-Request GET?
With the following Code i only get the IP:
B4X:
Sub Server_HandleRequest (Request As ServletRequest, Response As ServletResponse)
Case Request.RequestURI.Contains("23446554861/holeIP")
Log("/holeIP : " & Request.RequestURI )
[B]Log("from IP : " & Request.RemoteAddress)[/B]
Dim RA = ( Request.RemoteAddress) As String
Response.SendString(RA)
Log(Request.Method)
......
With the UDP-Lib Packet5000.port is it possible - why not with HTTP Server.
Thx
Tom