leoprendes New Member Licensed User Longtime User Jan 24, 2020 #1 How do I send a large list in json, not by URL + Text?
Jorge M A Well-Known Member Licensed User Longtime User Jan 24, 2020 #3 Send to where?? Who is receiving?? What are you trying to do and how?? Upvote 0
leoprendes New Member Licensed User Longtime User Jan 24, 2020 #4 When sending to the webservice, we use PostString(URL, parameter). But if I need to send a lot of information, I would have some other method, because sending with the URL will not allow it. Upvote 0
When sending to the webservice, we use PostString(URL, parameter). But if I need to send a lot of information, I would have some other method, because sending with the URL will not allow it.
DonManfred Expert Licensed User Longtime User Jan 25, 2020 #5 leoprendes said: because sending with the URL will not allow it. Click to expand... with Poststring, Postfile, PostMultipart you can send a lot of Data. If something is not working for you then you should post the full error and upload a small project showing the problem. Upvote 0
leoprendes said: because sending with the URL will not allow it. Click to expand... with Poststring, Postfile, PostMultipart you can send a lot of Data. If something is not working for you then you should post the full error and upload a small project showing the problem.
S sorex Expert Licensed User Longtime User Jan 25, 2020 #6 only GET attaches the content/parameters to the url, POST used the datablock. maybe your webservice has a limit set of accepted POST size. Upvote 0
only GET attaches the content/parameters to the url, POST used the datablock. maybe your webservice has a limit set of accepted POST size.