最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
浅析WebService客户端应用方法
时间:2022-07-02 11:21:25 编辑:袖梨 来源:一聚教程网
.NET平台内建了对Web service的支持,包括Web service的构建和使用。
与其它开发平台不同,使用.NET平台,你不需要其他的工具或者SDK就可以完成Web service的开发了。.NET Framework本身就全面支持Web service,包括服务器端的请求处理器和对客户端发送和接受SOAP消息的支持。本文将带你用.NET创建和使用Web service。
一 在.NET中创建Web service
要在.NET中创建Web service,你只需在你的解决方案中选择"文件/添加新项",弹出如下图1所示的对话框:
图1
在此框中,选择"Web服务",并指定名称。Vs.Net将为你建立一个缺省的webservice框架。根据需要,你可以建立所需的webservice方法。
如下代码是从sql server 2000的northwind数据库employees中返回所有employee信息的webservice方法。
[WebMethod]
public string getEmployees()
{
string cnstr="server=njim01;database=northwind;uid=sa;pwd=64084888;";
string rsString;
SqlConnection cn=new SqlConnection(cnstr);
SqlDataAdapter cmd=new SqlDataAdapter("select * from employees",cn);
DataSet ds=new DataSet();
DataTable tbl;
cmd.Fill(ds,"employees");
tbl=ds.Tables["employees"];
rsString="
cellspacing="1">";
for(int i=0;i<=ds.Tables["employees"].Columns.Count-1;i++)
{
rsString+=""+ds.Tables["employees"].Columns[i].ColumnName+" ";
}
rsString+=" ";
for(int i=0;i
与其它开发平台不同,使用.NET平台,你不需要其他的工具或者SDK就可以完成Web service的开发了。.NET Framework本身就全面支持Web service,包括服务器端的请求处理器和对客户端发送和接受SOAP消息的支持。本文将带你用.NET创建和使用Web service。
一 在.NET中创建Web service
要在.NET中创建Web service,你只需在你的解决方案中选择"文件/添加新项",弹出如下图1所示的对话框:
图1
在此框中,选择"Web服务",并指定名称。Vs.Net将为你建立一个缺省的webservice框架。根据需要,你可以建立所需的webservice方法。
如下代码是从sql server 2000的northwind数据库employees中返回所有employee信息的webservice方法。
[WebMethod]
public string getEmployees()
{
string cnstr="server=njim01;database=northwind;uid=sa;pwd=64084888;";
string rsString;
SqlConnection cn=new SqlConnection(cnstr);
SqlDataAdapter cmd=new SqlDataAdapter("select * from employees",cn);
DataSet ds=new DataSet();
DataTable tbl;
cmd.Fill(ds,"employees");
tbl=ds.Tables["employees"];
rsString="
for(int i=0;i<=ds.Tables["employees"].Columns.Count-1;i++)
{
rsString+="
}
rsString+="
for(int i=0;i
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21