If I'm making a number of http_url_post() in succession, do I have to call http_xproc() for each one? If the info is retained, how do I clear it when I need to move on to different http_url_post() calls?
TIA
http_xproc() & repeated requests
-
- Site Admin
- Posts: 799
- Joined: Sun Jul 04, 2021 5:12 am
Re: http_xproc() & repeated requests
It is retained for the life of the activation group (unless you clear it.)
You can clear it by setting the exit point to null. Using the debug exit point as an example:
Obviously that first parameter should be changed to the specific exit point that you want to clear.
You can clear it by setting the exit point to null. Using the debug exit point as an example:
Code: Select all
http_xproc( HTTP_POINT_DEBUG: *null: *null);
Re: http_xproc() & repeated requests
Perfect, thank you!