NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: David on December 27, 2011, 03:15:10 PM

Title: Is ThisWebServer.Page Stored in p_web anywhere?
Post by: David on December 27, 2011, 03:15:10 PM
I have a web server that excepts posts of data.  If the data was xml, I would use p_web.GetValue('xml').... but it isn't xml, just text.  Is the body of the post stored in p_web anywhere?
Title: Re: Is ThisWebServer.Page Stored in p_web anywhere?
Post by: Bruce on December 27, 2011, 10:21:30 PM
The whole incoming request is stored, so that's a start. You just need to strip off the Post data part. Try something like this;

x = instring('<13,10,13,10>', p_web.RequestData.DataString, 1, 1)
if (x > 0) and (x+4 <= p_web.RequestData.DataStringLen)
   p_web.SetValue('postdata',p_web.RequestData.DataString[(x+4) : p_web.RequestData.DataStringLen])
end

Then the postdata is in p_web.GetValue('postdata')

Cheers
Bruce
Title: Re: Is ThisWebServer.Page Stored in p_web anywhere?
Post by: David on December 28, 2011, 05:33:51 AM
Thank you Bruce... that was what I was looking for.