![]() |
Using post with TContentHandler - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: Using post with TContentHandler (/thread-1027.html) |
Using post with TContentHandler - cprmlao@hotmail.com - 04-11-2019 Hi, I did a json post to a content handler I just created. I put a breakpoint in the execute method. I stopped in the breakpoint and I am searching in aRequest and aParams but I am unable to find the json content posted. Where I can find the posted json in the execute handler method? regards, Luiz RE: Using post with TContentHandler - Jose Nilton Pace - 04-11-2019 Hi Luiz. aRequest and aParams only shows to you when it cames via parameter, like ?param1=1¶m2=2, etc. When you send a json in BODY you have to use this demo to capture the json. RE: Using post with TContentHandler - cprmlao@hotmail.com - 04-21-2019 (04-11-2019, 12:58 PM)Jose Nilton Pace Wrote: Hi Luiz. aRequest and aParams only shows to you when it cames via parameter, like ?param1=1¶m2=2, etc. When you send a json in BODY you have to use this demo to capture the json. Thank you |