F Francesco Maresca Member Licensed User Longtime User Dec 1, 2016 #1 Hi i have this curl: B4X: Curl -v -k \ -X POST \ --header 'Content-Type: application/xml' \ https://test/v1/curl/' \ '--data-binary @myfile.xml --verbose What are the correct instructions to use it with httputils?
Hi i have this curl: B4X: Curl -v -k \ -X POST \ --header 'Content-Type: application/xml' \ https://test/v1/curl/' \ '--data-binary @myfile.xml --verbose What are the correct instructions to use it with httputils?
peacemaker Expert Licensed User Longtime User Dec 1, 2016 #2 Dim job As HttpJob job.Initialize("JobName", Me) job.GetRequest.SetContentType("application/xml") job.PostString("https://test/v1/curl/", strXML) Upvote 0
Dim job As HttpJob job.Initialize("JobName", Me) job.GetRequest.SetContentType("application/xml") job.PostString("https://test/v1/curl/", strXML)