Web Services 如何使用
使用我們的 ASP.NET Web Service 例子
在上一節(jié),我們創(chuàng)建了一個(gè) Web Service 的例子。
請(qǐng)?jiān)诖藴y(cè)試華氏度轉(zhuǎn)換攝氏度函數(shù):華氏度轉(zhuǎn)換為攝氏度
請(qǐng)?jiān)诖藴y(cè)試攝氏度轉(zhuǎn)換華氏度函數(shù):攝氏度轉(zhuǎn)換為華氏度
本測(cè)試使用 HTTP POST,會(huì)發(fā)送類似這樣的 XML 響應(yīng):
<?xml version="1.0" encoding="utf-8" ?>
<string xmlns="http://tempuri.org/">38</string>
使用表單來(lái)訪問(wèn) Web Service
通過(guò)使用表單和 HTTP POST,您可以把 web service 置于您的站點(diǎn)上,比如這樣: 華氏度轉(zhuǎn)換為攝氏度:
您可以把 web service 置于您的站點(diǎn)上
您可以使用這些代碼把 web service 放置在您的站點(diǎn)上:
<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>
服務(wù)器上的 "tempconvert.asmx" 的地址類似如下地址:
http://www.example.com/webservices/tempconvert.asmx
更多建議: