NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: JPMacDonald on June 29, 2015, 10:43:05 AM
-
The p_web.Redirect(...) appears to do a GET, is it possible to have it do a POST instead?
I'm trying to redirect to another site's page (within my own domain) and pass some values to it using POST.
Thanks
Parker
-
Hi Parker,
I presume you are talking about the web server side, not the web client side here?
If you want to redirect an incoming POST then you can do so with;
p_web.redirect(toURL, , true).
The 3rd parameter tells it to repost.
The whole prototype for Redirect is
NetWebServerWorker.Redirect PROCEDURE(String p_to, Long p_ToSecure=0, Long p_Repost=1, Long p_Type=301)
Cheers
Bruce
-
Hi Bruce,
Yes I was thinking of it from the server side.
You've made me realize I was looking at this all wrong and now need to rethink the approach.
Some desktop client habits are just hard to break!!!!
Regards
Parker