国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > XML > 正文

sqlserver2008 中使用MSXML2.ServerXMLHttp拼裝soap調用webservice

2024-07-21 02:46:18
字體:
來源:轉載
供稿:網友
sqlserver2008 中使用MSxml2.Serverxmlhttp拼裝soap調用webservice

要調用的接口方法:UP_ACC_inst_Info(string xml)

接口參數:xml格式的字符串

接口功能:傳遞人員編號、備注到接口進行更新,接口返回更新結果。

實例:

declare @strXML varchar(5000)declare @obj intdeclare @sUrl varchar(5000)declare @response varchar(5000)declare @hr int--參數SET @strXML ='<root><accountid>654</accountid> <innotes>654的備注</innotes></root>'

--將參數中的<,>轉換為轉義字符,否則接口無法把@strXML識別為string類型,會報400錯誤信息set @strxml=replace(@strXML,'<','&lt;')set @strxml=replace(@strXML,'>','&gt;')

--接口地址set @sUrl='http://localhost/WebService.asmx'--拼裝soap 1.2 格式信息set @strXML='<?xml version="1.0" encoding="utf-8"?><soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"><soap12:Body><UP_ACC_inst_Info xmlns="http://tempuri.org/"><strXML>'+@strXML+'</strXML></UP_ACC_inst_Info></soap12:Body></soap12:Envelope>'

exec sp_OACreate 'MSXML2.ServerXMLHttp', @obj out

exec sp_OAMethod @obj,'Open',null,'POST',@sUrl,FALSE

exec sp_OAMethod @obj,'setRequestHeader',null,'Content-Type','application/soap+xml; charset=utf-8'exec sp_OAMethod @obj,'Send',null,@strXMLexec sp_oagetPRoperty @obj,'status',@response outIF @hr <> 200BEGIN EXEC sp_OAGetErrorInfo @obj print @obj returnENDexec sp_oagetproperty @obj,'responseTEXT',@response out

--由于接口返回的結果也是xml格式的string,將里邊的<,>轉換回來set @response=replace(@response,'&lt;','<')set @response=replace(@response,'&gt;','>')print @responseexec sp_oadestroy @obj


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 栾川县| 盐边县| 高尔夫| 康定县| 定安县| 永兴县| 游戏| 安图县| 简阳市| 曲周县| 和田县| 宁强县| 昆明市| 五河县| 博客| 高安市| 额尔古纳市| 碌曲县| 拉萨市| 南京市| 昭觉县| 常山县| 马尔康县| 绥中县| 利川市| 合水县| 乌审旗| 巩义市| 甘孜县| 武宣县| 水城县| 龙南县| 靖宇县| 英吉沙县| 南宫市| 廉江市| 措美县| 阿合奇县| 天水市| 阜南县| 富裕县|