gkratnam said:
Do we have any examples on this?
Well, as posted above:
(Walkthrough: Creating XML Web Services with Visual FoxPro)
The term Web in Web service already tells you this works through http. XML is the data format, transport protocoll is http.
gkratnam said:
We would prefer going down the HTTP path and avoid ODBC/OLEDB.
You'd do both, ie the app or other client would make http requests to you webserver, that runs a php or python script that uses ODBC or OLEDB to access DBFs with VFP SL or xbase commands (as much as ODBC or OLEDB support, OLEDB knows all VFP9 data types, so it would be preferrable). The PHP or Python then sends the data back as http response, usually in an XML or JSON format the app can use.
You should talk to the app developer to decide about that interface to your data.
gkratnam said:
Could import/export data can be done via the third party application service? I
How should we know without knowing what app you're talking about and what API it offers.
If you're talkoing of something like WhatsApp, that can't be pointed to an API you program, you can only use what WhatsApp offers to developers as API and make posts, read answers.
Further help really depends on what you're talking about, here. You make me wonder since you say:
gkratnam said:
we can use the bells and whistles of the third party tool
That sounds like some already finished app you want to use. At the same time you say:
gkratnam said:
We are doing some co-operation with a third party tool
What does that mean? With a tool? Not with their develoeprs? If you can't decide what their app will use, you can make up whatever you like, but it won't be used. So is the tool in developement or do you want to offer an interface the app can use with slight modifications or what are you talking about?
Chriss