Sql – Is it possible to Consumes Sharepoint Webservices(SOAP-based) into ORACLE DB using PL/SQL

listoracleplsqlsharepointweb services

We have a requirement to store Sharepoint List Data into Oracle.

Is it possible to Consumes Sharepoint Webservices(SOAP-based) into ORACLE DB using PL/SQL, like to access _vti_bin/lists.asmx?op=GetList and parse the list data and store in the DB.

Has anybody tried this ??? Are there any things (Security, environment) things to consider before diggin into this route??

I think PL/SQL has the support to call Web services and parse the XML to store in the DB.

Help is appreciated !!!

Best Answer

It should be possible (not sure if any of the Sharepoint Webservices are non-standard). Depending on your database version here are 2 articles that show how to call a SOAP webservice via PLSQL:

Oracle 9i and higher:
http://www.oracle-base.com/articles/9i/ConsumingWebServices9i.php

Oracle 10g and up:
http://www.oracle-base.com/articles/10g/utl_dbws10g.php

Related Topic