http://www.webxml.com.cn/webservices/ChinaTVprogramWebService.asmx?op=getTVstationString

SOAP 1.1

以下是 SOAP 1.1 请求和响应示例。所显示的占位符需替换为实际值

POST /webservices/ChinaTVprogramWebService.asmx HTTP/1.1
Host: www.webxml.com.cn
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://WebXml.com.cn/getTVstationString" <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getTVstationString xmlns="http://WebXml.com.cn/">
<theAreaID>int</theAreaID>
</getTVstationString>
</soap:Body>
</soap:Envelope>

SOAP 1.2

以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值

POST /webservices/ChinaTVprogramWebService.asmx HTTP/1.1
Host: www.webxml.com.cn
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length <?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>
<getTVstationString xmlns="http://WebXml.com.cn/">
<theAreaID>int</theAreaID>
</getTVstationString>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length <?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>
<getTVstationStringResponse xmlns="http://WebXml.com.cn/">
<getTVstationStringResult>
<string>string</string>
<string>string</string>
</getTVstationStringResult>
</getTVstationStringResponse>
</soap12:Body>
</soap12:Envelope>

最新文章

  1. 使用jQuery Uploadify在ASP.NET 上传附件
  2. Mysql更换MyISAM存储引擎为Innodb的操作记录
  3. iOS 消息推送报错NSCocoaErrorDomain Code=3000
  4. python学习之——操作浏览器
  5. IOS 蓝牙相关-BabyBluetooth蓝牙库介绍(4)
  6. Data Visualization 课程 笔记2
  7. POJ 3384 Feng Shui 凸包直径 + 半平面交
  8. 公布一个软件,轻新视频录播程序,H264/AAC录制视音频,保存FLV,支持RTMP直播
  9. python--sorted函数
  10. wxWidgets 的 Linux / Windows 混合开发环境
  11. UE4 径向模糊radiu blur
  12. How to code like a hacker
  13. python工程师成长之路精品课程(全套)
  14. Eclipse 运行弹出A Java Exception has occurred.并报错Exception in thread 的解决方案
  15. C#获取文件夹下面的所有文件名
  16. sql server 锁与事务拨云见日(下)
  17. 030_CORS深究
  18. 使用Intellij Idea创建简单Maven项目(转)
  19. thinkphp本地调用Redis队列任务
  20. 使用阿里云Python SDK管理ECS安全组

热门文章

  1. c++ mfc和win32项目
  2. centos nginx https 配置
  3. QT一个最简单的openGL例子
  4. CentOS5、CentOS6启动流程
  5. tbdr+mrt
  6. php类知识----特别用法
  7. php类知识点滴---类的实例化,构造函数,继承初步
  8. Java-UploadHelper工具类
  9. 浏览器表单自动填充默认样式 - autofill问题解决
  10. composer.json文件解读