Hi,

If I understand correctly, you want to retrieve a dynamic web page with
HTTP POST method. REBOL's built-in HTTP protocol uses GET method only,
so you should not modify it. But you can build and send a simple POST
request with TCP protocol. There is an example http-post.r at rebol.org.

There's another possibility. Many CGI scripts accept both GET and POST
methods, and detects automatically which one it is. So you can look at
form field names of the HTML form that leads to the script, encode the
names and values in the URL in your browser and try it.

-- 
Michal Kracik

[EMAIL PROTECTED] wrote:
> 
> I would like to analyse a dynamic web page by a rebol script. to read the
> web page  I have to call a cgi-script which uses the 'POST' method.
> But I don't how to set the required arguments in the ENV$ variable of the
> http request .
> 
> I think I have to modify the http settings defined in system/schemes/http,
> but there is no documentation in the rebol user-manual how to do this.
> 
> can anybody help me?
> 
> Markus Zmija

Reply via email to