Has anybody been able to at the data sent through an HTTP Request? I’ve tried using these 2 functions I found in the AWS toolkit.pdf:
extern char * RpGetFormBufferPtr(void *theServerDataPtr);
extern void RpGetFormItem(char ** theBufferPtr,
char * theNamePtr,
char * theValuePtr);
Where do I get the parameters: *theServerDataPtr, and **theBufferPtr?
I assumed that I can get theBufferPtr by using the function call RpGetFormBufferPtr but that function returns a point to char and not char**. Does anybody have an example of these or any other method they use to get request data?