Yup "Invalid ProgID" error - so it's not installed on the NT server and I got an error on the Linux one aswell.
I'll try this header building with perl or php.
A thousand thank-yous,
Will
--------------
Are these correct?
PHost = The 'ORIGIN' Server
PPage = The Destination Page
PostData = The Data
PResponse = whats this exactly???
Here is the full code I used:
<% @LANGUAGE = VBScript %>
<%
Option Explicit
Response.Expires = 0
Call SendPage("
Function SendPage(PHost,PPage,PostData)
set Socket = server.createobject("socket.tcp"

Socket.Host = PHost & ":80"
Socket.Open()
Socket.SendLine("POST " & PPage & " http/1.0"

Socket.SendLine("User-Agent: WebPager/0.1"

Socket.SendLine("Content-Type: application/x-
Socket.SendLine("Content-length: " & len(PostData))
Socket.SendLine(""

Socket.SendText(PostData)
Socket.WaitForDisconnect()
'if instr(Socket.Buffer, PResponse) <> 0 then
' SendPage = "TRUE"
'else
' SendPage = "FALSE"
'end if
Socket.Close
set Socket = nothing
Wait 3000
End Function
%>
<html>
<head>
<title>Auto-Submit</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Sent Data...
</body>
</html>