Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 sending XML HTTP post in stored procedure

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2001-03-25 : 13:06:50
roy writes "i would like the ability to Post XML to an HTTP port from within a SQL Server stored proc... I have used the MSXML2.ServerXMLHTTP30 to do this with a Visual Basic application... the code looks similiar to this...

--------------------------------------------------------------
Dim oHTTPRequest As New MSXML2.ServerXMLHTTP30
Dim oXMLDocument As New MSXML2.DOMDocument

oXMLDocument.loadXML "This is a Test"
oHTTPRequest.open "POST", "http://www.mysite.com", False
oHTTPRequest.send oXMLDocument
oXMLDocument.loadXML oHTTPRequest.responseText
--------------------------------------------------------------

is there a way to do something similiar to this within a stored proc.. can i use the Microsoft XML parser DLL within a stored proc... or any COM DLL in a stored proc...?

thanks in advance,
roy

p.s. the site is awesome and VERY informative.. thx 4 the hard work...!"

sbbastos
Starting Member

1 Post

Posted - 2012-06-15 : 11:57:25
Didio,
are you solved this issue?
You can show the solution?
Thanks!

SérgioB
Go to Top of Page
   

- Advertisement -