Hey guys,
I am working on an application, which needs to query the xml document from another server (service) on the fly. I used XQuery in Oracle to query over HTTP. Does anybody know how to do that in SQL Server 2k5? I read through quite a few articles but almost all of them talked about xqueries within the same database, like from an xml column to a table. But I want to do this:
select x.col1, x.col2
from openxml('http://123/x');
Any help or comment will be appreciated.