Lauren Wilson wrote:
And thus far, NO ONE has offered insight into doing this via HTTP! Is
it not possible to do that?
Possible, but not trivial. You could build a web service like a java servlet
that would accept data input and requests for data output in HTTPRequests issued
by your Access application and return requested data in the form of an XML
stream in the HTTP response.
I have two major applications that do this. They are not really intended to keep
two databases entirely synchronized though the methods could be adapted to that
purpose I suppose.
In my case a local Access database is used to create documents and the data for
these documents is stored locally in a standard Jet file. These are documents
that traditionally had been filled out on paper and either mailed or faxed into
the corporate office. With the Access application they are "submitted" over the
internet instead.
I use the MSXML.dll functions to generate an HTTPRequest and package the data in
a POST as an XML stream. A java servlet on our web server processes the request
by parsing the XML and stuffing the data into our corporate database. It then
returns a failure/success message in the HTTP response. The users can also
request that data be sent from the corporate database and inported back into the
local file by much the same methods.
The difficulty would be in making this more generic. In my case each type of
record upload/download is handled by custom routines at both ends specifically
geared to that type of data structure. A complex database with lots of tables
would be a time-consuming thing to set up, but once you have a working model a
great deal of it is a matter of copy/paste/modify.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com