[thelist] database connection across different IP's

Ken Schaefer ken at adOpenStatic.com
Tue Feb 18 22:17:03 CST 2003


You can use the MSXML2.XMLHTTP component to simulate HTTP actions (like
POST).

Found this tutorial via Google:
http://www.devarticles.com/art/1/25

If you .vbs file, you'd something like;

Set objXMLHTTP = WScript.CreateObject("Microsoft.XMLHTTP")
(or there are newer objects: MSXML4.ServerXMLHTTP etc):
http://msdn.microsoft.com/library/?url=/library/en-us/xmlsdk/htm/xml_obj_ise
rverxmlhttprequest_7zlc.asp?frame=true

Cheers
Ken

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Paul Bennett" <paul at teltest.com>
Subject: Re: [thelist] database connection across different IP's


: Ken Schaefer wrote:
:
: >Better would be a process that can *push* the data from inside the
firewall
: >to the webserver outside the firewall. Assuming you have Windows
machines,
: >you can use the Windows Task Scheduler to run a batch file (to copy the
: >whole .mdb file) -or- a .vbs file (just put some VBScript into a file,
: >instantiate some ADO objects etc) to create the necessary data and FTP or
: >similar to the webserver.
: >
: so how could I set up the php / mysql application (on a shared hosting
: environment) to  receive the sent info from the windows box? I am
: surmising that the batch file or vbs file can't POST it to a script
: which will grab all the data and feed it into the  secondary db?  how
: else could i receive it into the application?




More information about the thelist mailing list