怎样创建.NET Web Service(4)

2016-01-29 19:33 6 1 收藏

怎样创建.NET Web Service(4),怎样创建.NET Web Service(4)

【 tulaoshi.com - ASP 】

       附实例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>
  
  

 

来源:http://www.tulaoshi.com/n/20160129/1509676.html

延伸阅读
.NET之ASP Web Form快速入门 处理服务器控件的事件 每个ASP.NET服务器控件都可以当做一个对象模型看到,包括了属性、方法和事件。ASP.NET应用开发人员利用这些特征就能够清晰地修改页面并建立动态交互功能。 以下的例子描述了如何处理<asp:button runat=server控件的OnClick事件,从而进一步操纵<asp:label runat=server控件的"te...
标签: ASP
  LAME报告和验证控件 在移植过程中,开发组决定修改数据输入页以充分发挥ASP .NET检验控件的优势,并降低现存代码的复杂度。当用户想提交一个LAME报告时,他们在点击错误对话框(帮助文档的反馈链接)上的LAME按钮,或者是工具栏上的Feedback按钮之后,在Visual Studio .NET IDE中会见到一个页面。为了将检验控件整合到LAME输入...
.NET之ASP Web Application快速入门(4) Application 或 Session作用范围内的对象 在Global.asax文件中,我们可以通过object标记定义静态对象,这些对象可以是.NET框架类,也可以是经典的COM组件。其作用范围可以是appinstance、session或者application中的任一种。如果一个对象的作用范围是Appinstance,就表示这个对象明确属于HttpAppli...
XML Web Service 数据交换 客户端调用服务器端的 Web 服务并传递包含数据的 DataSet (ds): Private Sub Synchronize() Dim username As String = "JohnS" Dim blnSuccess As Boolean ' 使用 XML Web Service 进行同步 Cursor.Current = Cursors.WaitCursor Dim wsFeedback As New wsFeedback.feedback blnSuccess = wsFeedback.In...
说道Web Service的程序开发,八个月前我加班调试公司和中国电信的商务领航系统的接口的时候,用的就是Web Service,Web Service有很多优点,使用Web Service可以在不同编程语言间实现数据交换,而我那时对Web Service也不熟,就由同事帮我生成了一大堆Web Service的框架代码,我则只单独开发业务代码。 这次的另外一个项目也要用Web Service...

经验教程

684

收藏

20
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部