Link to home
Start Free TrialLog in
Avatar of GaryBytes
GaryBytes

asked on

Delphi Soap Server and SQL Server

Hi, I am new to web services, but I can see that it's pretty simple to create a basic soap server. But how to access an SQL server - does anyone have any examples. I have Delphi 7 Architect and BDS2006. My scenario is as follows:

- I have a SQL Server database on my website with one table, Customers.
- I want a soap server that has a simple function, "GetCustomer", that will query the DB for a customer id and return true or false if found.
- The client program connects to the internet and calls GetCustomer and passes a string and waits for the result.

If I had a sample to work from I would be off and running. I am used to local database development, but not web development. Any sample code, especially with regard to how to connect the database with authentication, would be greatly appreciated.

Gary
Avatar of Ivanov_G
Ivanov_G
Flag of Bulgaria image

You can work with MIDAS (TClientDataSet and TDataSetProvider) or work with SOAP Server that return XML to the client. This way you can have client written for other platforms and with other languages.
Avatar of GaryBytes
GaryBytes

ASKER

Thank you. Do you have any examples of working with MIDAS and SQL Server and a SOAP Server?

Thanks, Gary
Thank you. I appreciate your help. I had a look at these articles and unfortunately they do not deal with SQL Server from a SOAP Server. The first article deals with Kylix and SOAP Servers, but I am ok on creatig a basic SOAP Server. It is getting the SQL Server aspect of it working that I am stumbling on. I didn't see the full releveance of the second article dealing with XML and ClientDataSets, but maybe I'm missing something.

Gary
ASKER CERTIFIED SOLUTION
Avatar of Ivanov_G
Ivanov_G
Flag of Bulgaria image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Many thanks for all your help.

Gary