Does a open source DB exist that exposes SQL DB as a web service?
Do any of the existing open source databases have the ability to expose a database as a web service on a server port? I'm looking for something like Microsoft SQL Servers ability to expose a 开发者_运维问答wsdl web service URL .
If not, I guess i will use SQL Server Developer Edition...
CouchDb is built around HTTP, with all actions being http methods. This makes the database easy to access from a variety of platforms and languages.
However, you can create a web server for any databases, for the given app with varying degrees of flexibility.
You can do it with any database connected to a JBI like openEsb if you use a binding component like DatabaseBC
this is a good screencast on how generating a WSDL from an SQL file ... for more details you can look at this tutorial ...
精彩评论