M mtselection Member Licensed User Longtime User Oct 5, 2016 #1 Hi, In my httpjob app I send the job command with post sting B4X: job1.PostString(httpaddress,"REQUEST") How can I extract post string in the server handler B4X: Sub Server_HandleRequest (Request As ServletRequest, Response As ServletResponse) Thanks
Hi, In my httpjob app I send the job command with post sting B4X: job1.PostString(httpaddress,"REQUEST") How can I extract post string in the server handler B4X: Sub Server_HandleRequest (Request As ServletRequest, Response As ServletResponse) Thanks
M mtselection Member Licensed User Longtime User Oct 5, 2016 #2 Sorry, I wrong the channel thread, plese move in the Android Questions. Thanks Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Oct 5, 2016 #3 HttpServer library only supports standard browser requests: GET requests and multipart POST requests. You can use OkHttpUtils2 to create a multipart post request. Upvote 0
HttpServer library only supports standard browser requests: GET requests and multipart POST requests. You can use OkHttpUtils2 to create a multipart post request.