手把手教你学Web Service
2007-09-01 21:35:03 来源:WEB开发网To test, click the ’Invoke’ button.
按了之后,就出现:
<?xml version="1.0" encoding="utf-8" ?>
<string xmlns="http://tempuri.org/">Hello World</string>
OK!我们的第一个Web Service 成功了!
2.让我们试一下改改一些东西,输入参数好像太简单了,加点东西吧:
public string HelloWorld(string strInput)
返回值变为return str+"Hello World"
其余不变,有什么事情发生那?执行之,第一个界面不变,但是有invoke按钮的那个页面就不同了,多了一个表格,parameter那一列多了个strInput:,value那列多了一个text box。喔,原来是在text box里面输入strInput的值。随便打什么,比方说"Nfs is the best",按invoke按钮,返回如下信息:
<?xml version="1.0" encoding="utf-8" ?>
<string xmlns="http://tempuri.org/">Nfs is the best Hello World</string>
会用了吗?
3.在变化一些,输入参数变为数组
public string HelloWorld(string[] str)
{
return str[0]+"Hello World";
}
执行之,第一个页面好像没什么问题,但是一点hello world这个链接,就好像出错了!
Test Test forms are only available for methods with non-array primitive types as parameters.
SOAP
The following is a sample SOAP request and response. The placeholders shown need to be replaced with actual values.
.............
- ››web安全之信息刺探防范1
- ››webqq 最新加密算法
- ››webdriver 数据库验证方法
- ››WebSphere Application Server 7.0 XML Feature P...
- ››Web2.0网络时代基于社会影响力的声望值
- ››Web服务器搭建:配置Linux+Apache+Mysql+PHP(或Pe...
- ››WebLogic调整Java虚拟机性能优化参数
- ››webqq2.0协议研究(3)-ClientId生成
- ››Web.config配置文件
- ››WebBrowser组件的execWB方法——Delphi控制浏览器...
- ››Web前端设计模式--制作漂亮的弹出层
- ››WebSphere 反向投资者: 解决 WebSphere Applicati...
更多精彩
赞助商链接