B bluedude Well-Known Member Licensed User Longtime User Oct 5, 2011 #1 Hi Erel, Why do I need to provide the URL in Httputils.getstring again? I would expect to use the JobId. Also wondering how to implement UTF8 (I use that in my original HTTP code) by using GetString ("UTF8"). For the rest it seems to be a great handy code module. Cheers,
Hi Erel, Why do I need to provide the URL in Httputils.getstring again? I would expect to use the JobId. Also wondering how to implement UTF8 (I use that in my original HTTP code) by using GetString ("UTF8"). For the rest it seems to be a great handy code module. Cheers,
Erel B4X founder Staff member Licensed User Longtime User Oct 5, 2011 #2 HttpUtils use the URL as the key for getting results. TaskIds can be reused internally. UTF8 encoded text should work properly. Upvote 0
HttpUtils use the URL as the key for getting results. TaskIds can be reused internally. UTF8 encoded text should work properly.
B bluedude Well-Known Member Licensed User Longtime User Oct 5, 2011 #3 Erel, What I don't get is why I need to provide the URL again while I already used that in PostString? Seems to be a little inconvenient sometimes. Cheers, Upvote 0
Erel, What I don't get is why I need to provide the URL again while I already used that in PostString? Seems to be a little inconvenient sometimes. Cheers,
Erel B4X founder Staff member Licensed User Longtime User Oct 5, 2011 #4 HttpUtils can handle "Jobs" with many Urls (tasks). Therefore the Url is needed to map between the tasks and the results. Store the Url in a global variable and then use the variable to fetch the result. Upvote 0
HttpUtils can handle "Jobs" with many Urls (tasks). Therefore the Url is needed to map between the tasks and the results. Store the Url in a global variable and then use the variable to fetch the result.