holas...lo que necesito es mas o menos esto...
un script (o derechamente .net) que me abra un documento .txt, lea su contenido y lo envie via http... yo ya tengo algo pero no exactamente lo que necesito... aqui va:
Dim doc, xmlHttp
set xmlHttp = CreateObject("MSXML2.XMLHTTP")
call xmlHttp.open ("POST", "http://blablabla/blebleble/bliblibli/midll.dll",false)
xmlHttp.send "c:\EDIINT.txt"
if err = 0 then
if xmlHttp.status=202 then
msgbox("Enviado")
else
msgbox("Error " & xmlHttp.statustext)
end if
else
msgbox("Error protocolo http" & err.description)
end if
Este codigo por ejemplo solo me envia lo que esta entre " "....
ojo .. que el contenido del archivo puede ser contenido unicode....
saludos
gracias...