I am trying to get hold of what data is being posted during the 'resource-request-starting' signal, by reading the content of the WebKitNetworkRequest *request variable that comes through. I more or less try to do the following:
SoupMessage* soupMessage=webkit_network_request_get_message(request); SoupMessageBody* request_body=soupMessage->request_body; SoupBuffer* soupBuffer=soup_message_body_flatten(request_body); const char* requestData=soupBuffer->data; I had expected to find the form variables posted in requestData. I am obviously doing something wrong, because there is nothing to be found in requestData. Does anybody know how to get hold of the form variables posted? They should probably look like: a=1&b=2&c=whatever ... _______________________________________________ webkit-gtk mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-gtk
