MotoMusher Active Member Licensed User Longtime User Jan 27, 2013 #1 I am calling a RESTful service. One item that is not critical, but I would like to implement, is an HTTP DELETE method (POST, GET, PUT, DELETE). I see the first 3 in HTTPUtils2, but not the last. Any ideas? Representational state transfer - Wikipedia, the free encyclopedia
I am calling a RESTful service. One item that is not critical, but I would like to implement, is an HTTP DELETE method (POST, GET, PUT, DELETE). I see the first 3 in HTTPUtils2, but not the last. Any ideas? Representational state transfer - Wikipedia, the free encyclopedia
Erel B4X founder Staff member Licensed User Longtime User Jan 27, 2013 #2 Create a new sub in HttpJob based on Download. The only difference is that you need to call req.InitializeDelete. Upvote 0
Create a new sub in HttpJob based on Download. The only difference is that you need to call req.InitializeDelete.