HttpJob and DynDns addresses

Magma

Expert
Licensed User
Longtime User
Hi there,

i am trying to work with my dyndns address but getting problem from httpjob...

Well i see there is a problem with compatibility or something (may be i am wrong)...

When i trying to my real web server works perfect... but when i am trying to myname.dontexist.net (example of dyndns paid version) - getting that there is problem...

My code:
B4X:
    newurl = "http://---.dontexist.net/tracking/trackme.asp"
    If EditText1.Text = "" Then
    varss="lat=" & lblLat.Text & "&Long=" & lblLon.Text & "&speed=" & lblSpeed.text & "&car=" & carid & "&password=*********"
    Else
    varss="lat=" & lblLat.Text & "&Long=" & lblLon.Text & "&speed=" & lblSpeed.text & "&car=" & carid & "&password=*********&msg=" & EditText1.Text
    End If
    newurlall = newurl & "?" & varss
  
    If debugon = False Then
    TW.Initialize(File.OpenOutput(File.DirRootExternal, "rtzlog.txt",True))
    TW.WriteLine(newurlall)
    TW.Flush
    TW.Close  
    End If
  
    If oldurl <> newurlall Then
          job1.Initialize("Job1", Me)
            job1.PostString(newurl, varss)
        oldurl=newurlall
    End If

Tried at my workstation pc with proxy (ofcourse becuase of dyndns) works perfect..
 
Last edited:
Top