随着微软Visual Studo.Net Beta版的发布,由于Visual Studio.Net对XML以及Web服务的强大支持,利用Visual Studio.Net开发Web服务应用将会越来越多而且是非常的方便。本文以一个B2B电子商务网站为例,介绍利用web服务在不同站点间共享同一数据库的具体方法和步骤。本文中,客户端是指使用web服务的一方,服务器端是指提供web服务的另一方。 |
该网站是一家(简称A)从事网上销售手机SIM卡的业务的电子商务网站。前不久,该网站与另一家网站(简称B)合作,共同开展网上销售联通手机SIM卡业务。由于都是使用的A网站的号码资源,存取的都是A网站的数据库,于是笔者利用webservice技术为另一家网站开发了网上售卡系统。 |
1. 数据库采用SQL SERVER2000,使用存储过程实现号码浏览的分页显示。代码如下: |
declare @allid int,@beginid int,@endid int,@pagebegin char(11),@pageend char(11) |
select @allid=count(*) from jinan where cityid=@cityid and (code like @code+'%') |
select @recordcount=@allid |
declare cur_fastread cursor scroll for |
SELECT code FROM jinan where cityid=@cityid and (code like @code+'%') order by code |
select @beginid=(@pagenow-1)*@pagesize+1 |
select @endid=@beginid+@pagesize-1 |
fetch absolute @beginid from cur_fastread into @pagebegin |
fetch last from cur_fastread into @pageend |
fetch absolute @endid from cur_fastread into @pageend |
select code,cost,status from jinan join xuanhaofei on jinan.category=xuanhaofei.category and jinan.cityid=xuanhaofei.cityid |
where code between @pagebegin and @pageend order by code |
2. 用Visual Studio.net创建webservice。在visual studo.net中,webservice文件的扩展名是.asmx。该文件放在A网站上,供其他网站调用。 |
* 启动visual studio.net,选择new project。 |
* 在左面版中选择visual c# projects,在右面版中选择ASP.NET WebService。 |
* 单击ok按钮就生成了一个webservice项目。在项目中新建一个webservice文件,WebService1.asmx。该文件实现对数据库的存取,并对调用者输出一个字符串。 |
using System.Collections; |
using System.ComponentModel; |
using System.Data.SqlClient; |
using System.Configuration; |
using System.Diagnostics; |
using System.Web.Services; |
public class Service2 : System.Web.Services.WebService |
//CODEGEN: This call is required by the ASP.NET Web Services Designer |
[WebMethod] //[WebMethod]属性声明此方法作为web服务可以被远程使用者调用 |
public string table(int pagenow,int cityid) |
SqlDataReader d=GetCode(pagenow,cityid,out recordcount); |
page=recordcount/39;//每页只显示39个号码 |
StringBuilder str=new StringBuilder("<table border='1' width='100%' bordercolorlight='00008B' bordercolordark='#fffff0' cellspacing='0' cellpadding='0' height='24'><tr>"); |
str.Append("<td bgcolor='#f0f8ff' align='middle' height='0' valign='center'>"); |
str.Append("<p style='MARGIN-BOTTOM: 2px'><font size='2'>号 码</font></p></td>"); |
str.Append("<td bgcolor='#f0f8ff' align='middle' height='0' valign='center'>"); |
str.Append("<font size='2'>选号费</font></td><td bgcolor='#f0f8ff' align='middle' height='0' valign='center'> </td>"); |
str.Append("<td height='24' align='middle'><font size='2'>"); |
str.Append(d["code"].ToString()); |
str.Append("</td><td height='24' align='middle'><font size='2'> "); |
str.Append(d["cost"].ToString()); |
if((d["status"].ToString().TrimEnd())=="已预定") |
str.Append("<td height='24' align='middle'>"); |
str.Append("<input type='image' name='image' src='images/hand.gif'>"); |
str.Append("<td height='24' align='middle'>"); |
str.Append("<input type='image' name='image' src='images/cart.jpg' onclick='javascript:addcart("); |
str.Append(d["code"].ToString()); |
str.Append(")' width='24' height='24'>"); |
str.Append("</tr></table><br>"); |
str.Append("<font color='#000080' size=2>首页 上一页</font> "); |
str.Append("<font color='#000080' size=2><a href='javascript:first()'>首页</a> "); |
str.Append("<a href='javascript:previous("); |
str.Append(")'>上一页</a></font> "); |
str.Append("<font color='#000080' size=2>下一页 尾页</font>"); |
str.Append("<a href='javascript:next("); |
str.Append(")'><font color='#000080' size=2>下一页</a> <a href='javascript:last("); |
str.Append(")'>尾页</a></font>"); |
str.Append("<font color='#000080' size=2> 页次:</font><strong><font color=red size=2>"); |
str.Append("</font><font color='#000080' size=2>/"); |
str.Append("</strong>页</font>"); |
str.Append("<font color='#000080' size=2> 共<b>"); |
str.Append("</b>个号码 <b>39</b>个号码/页</font>"); |
private SqlDataReader GetCode(int pagenow,int cityid,out int recordcount) |
con=new SqlConnection("server=localhost;database=yitong;uid=sa;pwd="); |
SqlCommand cmd=new SqlCommand("fenye",con); |
cmd.CommandType=CommandType.StoredProcedure; |
cmd.Parameters.Add(new SqlParameter("@pagenow",SqlDbType.Int)); |
cmd.Parameters["@pagenow"].Value=pagenow;//目前所在页面 |
cmd.Parameters.Add(new SqlParameter("@pagesize",SqlDbType.Int)); |
cmd.Parameters["@pagesize"].Value=39;//每页要显示的号码数 |
cmd.Parameters.Add(new SqlParameter("@cityid",SqlDbType.Int)); |
cmd.Parameters["@cityid"].Value=cityid;//城市代码 |
cmd.Parameters.Add(new SqlParameter("@code",SqlDbType.Char,3)); |
cmd.Parameters["@code"].Value="130";//只搜索联通的手机号码 |
q=cmd.Parameters.Add(new SqlParameter("@recordcount",SqlDbType.Int)); |
q.Direction=ParameterDirection.Output; |
recordcount=(int)cmd.Parameters["@recordcount"].Value;//返回的号码总数 |
3. 客户端页面存放在B网站上。当客户浏览该网站时,通过该页面可以浏览、订购A网站数据库中号码。客户端页面使用微软的Webservice Behavior技术调用A上的web服务。WebService Behavior是微软在IE5.0中新增加的一项可以通过页面脚本使用web服务的技术。她使用SOAP协议与web服务通讯,可以动态更新页面的局部,而不刷新整个页面,较之通常使用的整页刷新的方法,它更快也更有效。要使用这项技术,须从微软网站上下载一个webservice.htc组件到客户端页面所在的目录下。 |
<script language=”javascript”> |
function window_onload() { |
service.useService("http://IPofA/service1.asmx?WSDL","myselect"); |
//调用web服务的table方法,显示第一个页面 |
service.myselect.callService(showCode,"table",1,city.value); |
function city_onchange() { |
service.service1.callService(showCode,"table",1,city.value); |
url = "basket.asp?code=" + id ; |
service.myselect.callService(showCode,"table",x,city.value) |
service.myselect.callService(showCode,"table",1,city.value); |
service.myselect.callService(showCode,"table",x,city.value); |
service.myselect.callService(showCode,"table",x,city.value); |
function showCode(result) |
service.innerHTML=result.value; |
<body onload="return window_onload()"> |
<select language="javascript" name="city" onchange="return city_onchange()"> |
<option value="531" selected> 山东济南</option> |
<option value="537"> 山东济宁</option> <option value="546"> 山东东营</option> |
<div id="service" style="behavior:url(webservice.htc)"> |
可以看到,webservice behavior可以使一个静态页面通过脚本程序使用web服务,而且不用在客户端建立代理,只要拷贝一个webservice.htc组件就可以了。 |
利用Visual Studio.Net,你可以不必了解HTTP、XML、SOAP、WSDL等底层协议,同样能开发和使用Web服务,真得是好爽。 |
|