Date:  06/23/2004 05:46:50 PM Msg ID:  002126
From:  FoxWeb Support Thread:  002120
Subject:  Re: Is it possible to do this?
There are dozens of HTTP components, which will allow you to send and receive data via HTTP, including the Internet Transfer Control, which comes with Visual Basic (and I think VFP).
 
Unfortunately we don't have any sample source code for FoxWeb applications that interact with fat client software, but it's really not that different.  You would essentially use FoxWeb as a mechanism to transfer data back and forth.  You will find the new XML-related VFP functions, including CursorToXML and XMLToCursor very useful for this kind of projects.

FoxWeb Support Team
support@foxweb.com email

Sent by Carlos Fuertes on 06/23/2004 05:40:03 AM:
By the way... it sound interesting the fact I can use an HTTP control to interact with the scripts on the server. Could you please tell me where can I get such a control? and if possible an example of how to use it.
 
Many thanks in advance 
Sent by Carlos Fuertes on 06/23/2004 05:32:50 AM:
Thankyou for your comments. Probably the best way is the one I'm using now: the script at the server creates an VFP executable containing the data and forwards it attached to an e-mail to the client. By executing such exe file, data is inserted into the client's application. The only disadvantage now is that someone has to click onto the exe file, but is not so bad.
 
Thanks for your help once more
Sent by FoxWeb Support on 06/22/2004 04:26:05 PM:
Typically, your FoxWeb applications will be called via Web browsers, so there's no way to interact with data, such as VFP tables, on the client computer.
 
If your client base is small and consistent, and utilizes your application on a frequent basis (for example if you are writing an intranet application), you could utilize VFP as the front end to your application instead of a Web browser.  The front end would use an HTTP control to communicate with the FoxWeb scripts running on your Web server and would also have access to local data.  Essentially, the front end would be a regular VFP app., which would have the ability to exchange information (probably in XML format) with the Web server.
 
Please note that undertaking such a project is not a 1-2 day task and that there a lot of things you will need to figure out on your own.  Also this solution would not work if your client base is a broad set of users that occasionally connect over the Internet to collect, or update information, because such a group would not be willing to download and install a client-side application (as well as the VFP run-time DLLs).

FoxWeb Support Team
support@foxweb.com email

Sent by Carlos Fuertes on 06/22/2004 03:18:14 PM:
Hello all,
 
I have a foxweb script that collects information in a form and then inserts such information into a foxpro table located at the server side (no matter if the table is located in the same computer where the web server resides, or in another computer over the Intranet).
 
Now, my question is: is it possible in any way to insert the same record into a table located at the client side from the same script, or using other techniques?. I mean the same table (same structure) is also located at the C drive of the client machine and I need to duplicate the record inserted into the server
 
Any help will be apreciated
 
Thanks