当前位置: 首页 > 图文教程 > 网络编程 > ASP > 怎样创建.NET Web Service(4)

ASP
ASP漏洞集-跨站Script攻击和防范
利用JSP的思想来做ASP
asp的19个基本技巧
自定义aspnet_client的位置
编码的风格和如何设置调试代码
RS.GETROWS使用详解
Adodb.Stream 组件的使用说明
在ASP.Net中实现RSA加密
关于水晶报表10 的字报表数据填充和显示
DataList里套DataGrid,DataBind
ASP.NET验证控件详解
ASP网站漏洞解析及黑客入侵防范方法
产生一个密码,并记录到数据库,然后发送给用户
ASP内置对象 Request对象 详解
ASP 中 DateDiff 函数详解
几个常用的小函数
在记录集中加入判断使之灵活
会员系统“找回密码”的制作方法
一个分页代码例子
常见的错误及其解决方法

ASP 中的 怎样创建.NET Web Service(4)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 32 ::
收藏到网摘: n/a

       附实例A
  
  <?Xml version="1.0" ?>
  <serviceDescription Xmlns:s0="http://tempuri.org/" name="SecurityWebService" targetNamespace="http://tempuri.org/"
  Xmlns="urn:schemas-Xmlsoap-org:sdl.2000-01-25">
  <soap Xmlns="urn:schemas-Xmlsoap-org:soap-sdl-2000-01-25">
  <service>
  <addresses>
  <address uri="http://localhost/work/aspx/SampleService.asmx" />
  </addresses>
  <requestResponse name="GetSecurityInfo" soapAction="http://tempuri.org/GetSecurityInfo">
  <request ref="s0:GetSecurityInfo" />
  <response ref="s0:GetSecurityInfoResult" />
  <info>This method call will get the company name and the price for a given security code.</info>
  </requestResponse>
  </service>
  </soap>
  <httppost Xmlns="urn:schemas-Xmlsoap-org:post-sdl-2000-01-25">
  <service>
  <requestResponse name="GetSecurityInfo" href="http://localhost/work/aspx/SampleService.asmx/GetSecurityInfo">
  <request>
  <form>
  <input name="Code" />
  </form>
  </request>
  <response>
  <mimeXml ref="s0:SecurityInfo" />
  </response>
  <info>This method call will get the company name and the price for a given security code.</info>
  </requestResponse>
  </service>
  </httppost>
  <httpget Xmlns="urn:schemas-Xmlsoap-org:get-sdl-2000-01-25">
  <service>
  <requestResponse name="GetSecurityInfo" href="http://localhost/work/aspx/SampleService.asmx/GetSecurityInfo">
  <request>
  <param name="Code" />
  </request>
  <response>
  <mimeXml ref="s0:SecurityInfo" />
  </response>
  <info>This method call will get the company name and the price for a given security code.</info>
  </requestResponse>
  </service>
  </httpget>
  <schema targetNamespace="http://tempuri.org/" attributeFormDefault="qualified"
  elementFormDefault="qualified" Xmlns="http://www.w3.org/1999/XmlSchema">
  <element name="GetSecurityInfo">
  <complexType>
  <all>
  <element name="Code" Xmlns:q1="http://www.w3.org/1999/XmlSchema" type="q1:string" nullable="true" />
  </all>
  </complexType>
  </element>
  <element name="GetSecurityInfoResult">
  <complexType>
  <all>
  <element name="result" type="s0:SecurityInfo" />
  </all>
  </complexType>
  </element>
  <complexType name="SecurityInfo">
  <all>
  <element name="Code" Xmlns:q2="http://www.w3.org/1999/XmlSchema" type="q2:string" nullable="true" />
  <element name="CompanyName" Xmlns:q3="http://www.w3.org/1999/XmlSchema" type="q3:string" nullable="true" />
  <element name="Price" Xmlns:q4="http://www.w3.org/1999/XmlSchema" type="q4:double" />
  </all>
  </complexType>
  <element name="SecurityInfo" type="s0:SecurityInfo" />
  </schema>
  </serviceDescription>