victormedranop Well-Known Member Licensed User Longtime User Mar 12, 2017 #1 Hi, trying to connect to and http server, but no luck. any one with an example ? thanks, Victor
S sorex Expert Licensed User Longtime User Mar 13, 2017 #2 it's the same as in B4A B4X: Dim dlj As HttpJob dlj.Initialize("myjobid",Me) dlj.Download(url) then use the jobdone sub to process your data Upvote 0
it's the same as in B4A B4X: Dim dlj As HttpJob dlj.Initialize("myjobid",Me) dlj.Download(url) then use the jobdone sub to process your data
tufanv Expert Licensed User Longtime User Mar 13, 2017 #3 victormedranop said: Hi, trying to connect to and http server, but no luck. any one with an example ? thanks, Victor Click to expand... if you are connecting to http not https, you have to disable ATS Upvote 0
victormedranop said: Hi, trying to connect to and http server, but no luck. any one with an example ? thanks, Victor Click to expand... if you are connecting to http not https, you have to disable ATS
Erel B4X founder Staff member Licensed User Longtime User Mar 14, 2017 #4 tufanv said: if you are connecting to http not https, you have to disable ATS Click to expand... This is not 100% accurate. It is better to add an exclusion: https://www.b4x.com/android/forum/threads/74281/#content Upvote 0
tufanv said: if you are connecting to http not https, you have to disable ATS Click to expand... This is not 100% accurate. It is better to add an exclusion: https://www.b4x.com/android/forum/threads/74281/#content
tufanv Expert Licensed User Longtime User Mar 14, 2017 #5 Erel said: This is not 100% accurate. It is better to add an exclusion: https://www.b4x.com/android/forum/threads/74281/#content Click to expand... Yes you are right. I tried to mean that, sometimes I start a new project with b4i and can't make to job success, later i remember the ats. Maybe he forgot about it =) . Upvote 0
Erel said: This is not 100% accurate. It is better to add an exclusion: https://www.b4x.com/android/forum/threads/74281/#content Click to expand... Yes you are right. I tried to mean that, sometimes I start a new project with b4i and can't make to job success, later i remember the ats. Maybe he forgot about it =) .