• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Web Services 如何使用

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Web Services 如何使用


使用我们的 ASP.NET Web Service 例子

在上一节,我们创建了一个 Web Service 的例子

请在此测试华氏度转换摄氏度函数:华氏度转换为摄氏度

请在此测试摄氏度转换华氏度函数:摄氏度转换为华氏度

本测试使用 HTTP POST,会发送类似这样的 XML 响应:

<?xml version="1.0" encoding="utf-8" ?>
<string xmlns="http://tempuri.org/">38</string>


使用表单来访问 Web Service

通过使用表单和 HTTP POST,您可以把 web service 置于您的站点上,比如这样: 华氏度转换为摄氏度:

华氏度转换为摄氏度:
摄氏度转换为华氏度:


您可以把 web service 置于您的站点上

您可以使用这些代码把 web service 放置在您的站点上:

<form action='tempconvert.asmx/FahrenheitToCelsius'
method="post" target="_blank">
<table>
  <tr>
    <td>Fahrenheit to Celsius:</td>
    <td>
    <input class="frmInput" type="text" size="30" name="Fahrenheit">
    </td>
  </tr>
  <tr>
    <td></td>
    <td align="right">
     <input type="submit" value="Submit" class="button">
     </td>
  </tr>
</table>
</form>

<form action='tempconvert.asmx/CelsiusToFahrenheit'
method="post" target="_blank">
<table>
  <tr>
    <td>Celsius to Fahrenheit:</td>
    <td>
    <input class="frmInput" type="text" size="30" name="Celsius">
    </td>
  </tr>
  <tr>
    <td></td>
    <td align="right">
    <input type="submit" value="Submit" class="button">
    </td>
  </tr>
</table>
</form>

服务器上的 "tempconvert.asmx" 的地址类似如下地址:

http://www.example.com/webservices/tempconvert.asmx


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Web Service 实例发布时间:2022-02-03
下一篇:
Web Services 平台元素发布时间:2022-02-03
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap