使用微軟WebService技術(shù)完成遠(yuǎn)程數(shù)據(jù)庫存取 使用web服務(wù)在不同網(wǎng)站間共享同一數(shù)據(jù)庫
發(fā)表時(shí)間:2023-08-07 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]隨著微軟Visual Studo.Net Beta版的發(fā)布,由于Visual Studio.Net對(duì)XML以及Web服務(wù)的強(qiáng)大支持,利用Visual Studio.Net開發(fā)Web服務(wù)應(yīng)用將會(huì)越來越...
隨著微軟Visual Studo.Net Beta版的發(fā)布,由于Visual Studio.Net對(duì)XML以及Web服務(wù)的強(qiáng)大支持,利用Visual Studio.Net開發(fā)Web服務(wù)應(yīng)用將會(huì)越來越多而且是非常的方便。本文以一個(gè)B2B電子商務(wù)網(wǎng)站為例,介紹利用web服務(wù)在不同站點(diǎn)間共享同一數(shù)據(jù)庫的具體方法和步驟。本文中,客戶端是指使用web服務(wù)的一方,服務(wù)器端是指提供web服務(wù)的另一方。
問題的提出
該網(wǎng)站是一家(簡稱A)從事網(wǎng)上銷售手機(jī)SIM卡的業(yè)務(wù)的電子商務(wù)網(wǎng)站。前不久,該網(wǎng)站與另一家網(wǎng)站(簡稱B)合作,共同開展網(wǎng)上銷售聯(lián)通手機(jī)SIM卡業(yè)務(wù)。由于都是使用的A網(wǎng)站的號(hào)碼資源,存取的都是A網(wǎng)站的數(shù)據(jù)庫,于是筆者利用webservice技術(shù)為另一家網(wǎng)站開發(fā)了網(wǎng)上售卡系統(tǒng)。
各主要功能的模塊和關(guān)鍵代碼
1. 數(shù)據(jù)庫采用SQL SERVER2000,使用存儲(chǔ)過程實(shí)現(xiàn)號(hào)碼瀏覽的分頁顯示。代碼如下:
create procedure fenye
(
@pagenow int,
@pagesize int,
@cityid int,
@code char(3),
@recordcount int output
)
as
set nocount on
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
open cur_fastread
select @beginid=(@pagenow-1)*@pagesize+1
select @endid=@beginid+@pagesize-1
fetch absolute @beginid from cur_fastread into @pagebegin
if @endid>@allid
fetch last from cur_fastread into @pageend
else
fetch absolute @endid from cur_fastread into @pageend
set nocount off
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
close cur_fastread
deallocate cur_fastread
GO
2. 用Visual Studio.net創(chuàng)建webservice。在visual studo.net中,webservice文件的擴(kuò)展名是.asmx。該文件放在A網(wǎng)站上,供其他網(wǎng)站調(diào)用。
* 啟動(dòng)visual studio.net,選擇new project。
* 在左面版中選擇visual c# projects,在右面版中選擇ASP.NET WebService。
* 單擊ok按鈕就生成了一個(gè)webservice項(xiàng)目。在項(xiàng)目中新建一個(gè)webservice文件,WebService1.asmx。該文件實(shí)現(xiàn)對(duì)數(shù)據(jù)庫的存取,并對(duì)調(diào)用者輸出一個(gè)字符串。
下面是該文件的代碼:
WebService1.asmx.cs
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Text;
using System.Diagnostics;
using System.Web;
using System.Web.Services;
namespace WebService1
{
public class Service2 : System.Web.Services.WebService
{
SqlConnection con;
public Service2()
{
//CODEGEN: This call is required by the ASP.NET Web Services Designer
InitializeComponent();
}
[WebMethod] //[WebMethod]屬性聲明此方法作為web服務(wù)可以被遠(yuǎn)程使用者調(diào)用
public string table(int pagenow,int cityid)
{
int recordcount;//總號(hào)碼數(shù)
int page=0;//總頁數(shù)
int j=0;
SqlDataReader d=GetCode(pagenow,cityid,out recordcount);
if(recordcount%39==0)
{
page=recordcount/39;//每頁只顯示39個(gè)號(hào)碼
}
else
{
page=recordcount/39+1;
}
StringBuilder str=new StringBuilder("<table border='1' width='100%' bordercolorlight='00008B' bordercolordark='#fffff0' cellspacing='0' cellpadding='0' height='24'><tr>");
for(int i=0;i<3;i++)
{
str.Append("<td bgcolor='#f0f8ff' align='middle' height='0' valign='center'>");
str.Append("<p style='MARGIN-BOTTOM: 2px'><font size='2'>號(hào) 碼</font></p></td>");
str.Append("<td bgcolor='#f0f8ff' align='middle' height='0' valign='center'>");
str.Append("<font size='2'>選號(hào)費(fèi)</font></td><td bgcolor='#f0f8ff' align='middle' height='0' valign='center'> </td>");
}
str.Append("</tr><tr>");
while(d.Read())
{
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());
str.Append("</td>");
if((d["status"].ToString().TrimEnd())=="已預(yù)定")
{
str.Append("<td height='24' align='middle'>");
str.Append("<input type='image' name='image' src='http://cfan.net.cn/info/images/hand.gif'>");
str.Append("</td>");
}
else
{
str.Append("<td height='24' align='middle'>");
str.Append("<input type='image' name='image' src='http://cfan.net.cn/info/images/cart.jpg' onclick='
javascript:addcart(");
str.Append(d["code"].ToString());
str.Append(")' width='24' height='24'>");
str.Append("</td>");
}
j++;
if(j%3==0)
{
str.Append("</tr><tr>");
}
}
d.Close();
con.Close();
str.Append("</tr><br>");
if(pagenow==1)
{
str.Append("<font color='#000080' size=2>首頁 上一頁</font> ");
}
else
{
str.Append("<font color='#000080' size=2><a href='
javascript:first()'>首頁</a> ");
str.Append("<a href='
javascript:previous(");
str.Append(pagenow-1);
str.Append(")'>上一頁</a></font> ");
}
if(pagenow==page)
{
str.Append("<font color='#000080' size=2>下一頁 尾頁</font>");
}
else
{
str.Append("<a href='
javascript:next(");
str.Append(pagenow+1);
str.Append(")'><font color='#000080' size=2>下一頁</a> <a href='
javascript:last(");
str.Append(page);
str.Append(")'>尾頁</a></font>");
}
str.Append("<font color='#000080' size=2> 頁次:</font><strong><font color=red size=2>");
str.Append(pagenow);
str.Append("</font><font color='#000080' size=2>/");
str.Append(page);
str.Append("</strong>頁</font>");
str.Append("<font color='#000080' size=2> 共<b>");
str.Append(recordcount);
str.Append("</b>個(gè)號(hào)碼 <b>39</b>個(gè)號(hào)碼/頁</font>");
return str.ToString();
}
private SqlDataReader GetCode(int pagenow,int cityid,out int recordcount)
{
SqlDataReader dr=null;
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;//每頁要顯示的號(hào)碼數(shù)
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";//只搜索聯(lián)通的手機(jī)號(hào)碼
SqlParameter q;
q=cmd.Parameters.Add(new SqlParameter("@recordcount",SqlDbType.Int));
q.Direction=ParameterDirection.Output;
con.Open();
cmd.ExecuteNonQuery();
recordcount=(int)cmd.Parameters["@recordcount"].Value;//返回的號(hào)碼總數(shù)
dr=cmd.ExecuteReader();
return dr;
}
}
}
3. 客戶端頁面存放在B網(wǎng)站上。當(dāng)客戶瀏覽該網(wǎng)站時(shí),通過該頁面可以瀏覽、訂購A網(wǎng)站數(shù)據(jù)庫中號(hào)碼?蛻舳隧撁媸褂梦④浀腤ebservice Behavior技術(shù)調(diào)用A上的web服務(wù)。WebService Behavior是微軟在IE5.0中新增加的一項(xiàng)可以通過頁面腳本使用web服務(wù)的技術(shù)。她使用SOAP協(xié)議與web服務(wù)通訊,可以動(dòng)態(tài)更新頁面的局部,而不刷新整個(gè)頁面,較之通常使用的整頁刷新的方法,它更快也更有效。要使用這項(xiàng)技術(shù),須從微軟網(wǎng)站上下載一個(gè)webservice.htc組件到客戶端頁面所在的目錄下。
客戶端頁面的代碼如下:
Client.htm
<html>
<head>
<title></title>
<script language=”javascript”>
<!--
function window_onload() {
//調(diào)用A提供的web服務(wù)
service.useService("http://IPofA/service1.asmx?WSDL","myselect");
//調(diào)用web服務(wù)的table方法,顯示第一個(gè)頁面
service.myselect.callService(showCode,"table",1,city.value);
}
function city_onchange() {
service.service1.callService(showCode,"table",1,city.value);
}
function addcart(id)
{
url = "basket.asp?code=" + id ;
window.navigate(url);
}
function next(x)
{
//顯示下一頁
service.myselect.callService(showCode,"table",x,city.value)
}
function first()
{
//顯示首頁
service.myselect.callService(showCode,"table",1,city.value);
}
function previous(x)
{
//顯示上一頁
service.myselect.callService(showCode,"table",x,city.value);
}
function last(x)
{
//顯示最后一頁
service.myselect.callService(showCode,"table",x,city.value);
}
function showCode(result)
{
//result保存調(diào)用web服務(wù)后返回的結(jié)果
service.innerHTML=result.value;
}
//-->
</script>
</head>
<body onload="return window_onload()">
<select language="javascript" name="city" onchange="return city_onchange()">
<option value="531" selected> 山東濟(jì)南</option>
<option value="537"> 山東濟(jì)寧</option> <option value="546"> 山東東營</option>
</select>
<div id="service" style="behavior:url(webservice.htc)">
</div>
</body>
</html>
可以看到,webservice behavior可以使一個(gè)靜態(tài)頁面通過腳本程序使用web服務(wù),而且不用在客戶端建立代理,只要拷貝一個(gè)webservice.htc組件就可以了。
利用Visual Studio.Net,你可以不必了解HTTP、XML、SOAP、WSDL等底層協(xié)議,同樣能開發(fā)和使用Web服務(wù),真得是好爽。
附圖:(這是我在本機(jī)調(diào)試時(shí)顯示的頁面,供參考)