Sub Process_Globals
Type DBResult (Tag As Object, Columns As Map, Rows As List)
Type DBCommand (Name As String, Parameters() As Object)
Private const rdcLink As String = "http://192.168.0.6:17178/rdc"
End Sub
Sub CreateRequest As DBRequestManager
Dim req As DBRequestManager
req.Initialize(Me, rdcLink)
Return req
End Sub
rdcLink is equal to "http://192.168.0.6:17178/rdc", you don't need to write the =, but probably you need to write the "http://" part to tell the server the protocol you're using
Apart from the http:// part , which I am sure you looked into already, it may be server issue..
Does http://192.168.0.6:17178/test return "Connection successful" from a web browser?
If not it may be that redirection to port is not successful .. Are you using https ? Then custom port can be problem..
In that case you need to set up a Reverse proxy in your webserver - Apache,nginx etc as the case may be..
Sub Process_Globals
Type DBResult (Tag As Object, Columns As Map, Rows As List)
Type DBCommand (Name As String, Parameters() As Object)
Private const rdcLink As String = "http://192.168.0.6:17178/rdc"
End Sub
Sub CreateRequest As DBRequestManager
Dim req As DBRequestManager
req.Initialize(Me, rdcLink)
Return req
End Sub
rdcLink is equal to "http://192.168.0.6:17178/rdc", you don't need to write the =, but probably you need to write the "http://" part to tell the server the protocol you're using