1 package require TclCurl
4 set fileContent "This is what we will send as if it was the content of a file"
6 curl::transfer -url 127.0.0.1/cgi-bin/post1.tcl -verbose 1 -post 1 \
7 -httppost [list name "firstName" contents "Andres" contenttype "text/plain" contentheader [list "adios: goodbye"]] \
8 -httppost [list name "lastName" contents "Garcia"] \
9 -httppost [list name "nombre" bufferName noFile.txt buffer $fileContent contenttype "text/html"] \
10 -httppost [list name "submit" contents "send"] -verbose 1