I try get text of cgi web consult.
"http://web/folder/consult.cgi?name1=value1&name2=value2"
the problem is Username

assword.
when run:
out
str s
Http h.Connect("web" "username" "password")
IntPost "http://web/folder/consult.cgi" "name1=value1&name2=value2" s
out s
the result:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>401 Authorization Required</title>
</head><body>
<h1>Authorization Required</h1>
<p>This server could not verify that you
are authorized to access the document
requested. Either you supplied the wrong
credentials (e.g., bad password), or your
browser doesn't understand how to supply
the credentials required.</p>
<hr>
<address>Apache/2.2.3 (Red Hat) Server at web Port 80</address>
</body></html>
I tried PostFormData but doesn't work.
Using a Inspector (external program Fiddler):
No Proxy-Authorization Header is present.
Authorization Header is present: Basic ZjE4MDpwd2QxODA=
Decoded Username

assword= xxx:yyy
Can you help?