A、通过命名空间和类名直接调用
示例:
WebService ws = new WebService()
string s = ws.HelloWorld()
B、通过添加WEB引则态用的方式调用,首先添加WEB引用,通过URL指向WEBSERVICE,
指定WEB引用名,假设为KK
示例:
kk.WebService n = new kk.WebService()
string ss=n.HelloWorld()
二、WebService在前台页面的JS 调用方法
1、首先通过下面的方法把Webservice在前台引用进来
<asp:ScriptManager runat="server">
<Services>
<asp:ServiceReference Path="WebService.asmx" InlineScript="True" />
</Services>
</asp:ScriptManager>
2、然后就可以通过派盯亏JS程序进行调用,示例如下:
<script type="text/jscript">
function a()
{
WebService.HelloWorld(onresult)
}
//这里的onresult是回调函数
function onresult(result)
{
alert(result)
}
function b()
{
WebService.add(1,2,onreturn)
}
function onreturn(result)
{
alert(result)
}
//下面的'context'是上尘神下文,可以通过回到函数通过重载的方式获得;
function c()
{
WebService.div(1,1,onresultC,onerror,'context')
}
function onresultC(res,c)
{
alert(res)
alert(c)
}
//onerror是获得异常信息的回调函数,下面给出了获得异常信息的方法
function onerror(error)
{
var a=""
a=String.format("获取服务器端异常的具体类型:{0}\t\n获取详细的异常描述信息:{1}\t\n获取造成异常的:{2}\t\n获取服务器端异常的堆栈
跟踪信息:{3}\t\n获取一个布尔值,表示异常是否是由于网络连接超时造成的{4}",
error.get_exceptionType(),
error.get_message(),
error.get_statusCode(),
error.get_stackTrace(),
error.get_timedOut())
alert(a)
}
a()
b()
c()
</script>
写一个WINDOWS服务定期调用webservice中的方法。1、先建一个WebService(ASP.NET Web 服务应用程序)
2、建这个WebService的虚拟目录
3、执行生成一个文件
{
C:\Program Files\Microsoft Visual Studio 8\VC>wsdl /language:C# /out:c:\myProxyClass.cs http://hostServer:88/ImportData.asmx?WSDL
这个工具(方法)是针对一个webservice生成一个能动态调用的类
language:C#-----C#语言输出
c:\myProxyClass.cs-----这个是判雹祥生成的文件存在本地的文件名和路径
http://hostServer:88/ImportData.asmx-----是虚拟目录运行时的地址
}
4、创建一个windows服务程序(新建项目->左侧选windows->右侧选windows服务),然后把生成的文件引入到windows服务的程序中
5、写调用事件(BeginImportUFData)
6、完成后编译生成一下,这时就会在此windows服务程序的bin文件夹下生掘搏成一个exe文件(如:MyNewService.exe
)
7、按以下方式安装
安装:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe 绝肆裤对路径\MyNewService.exe
卸载:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe -u 绝对路径\MyNewService.exe
例如:(用dos命令窗口执行)
安装:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe E:\chengxu\MyNewService\MyNewService\bin\Debug\MyNewService.exe
【然后显示:正在安装程序集,最后显示:“提交”阶段成功完成】
卸载:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe -u E:\chengxu\MyNewService\MyNewService\bin\Debug\MyNewService.exe
【最后提示:卸载完成】
启动、停止服务是window *** 作,找到管理-->服务 *** 作
一、WebService在cs后台程序中的调用A、通过命名空间和类名直接调用示例:WebServicews=newWebService()strings=ws.HelloWorld()B、通过添加WEB引用的方式调用,首先添加WEB引用,通过URL指向WEBSERVICE,指定WEB引巧扰用名,假设为KK示例:kk.WebServicen=newkk.WebService()stringss=n.HelloWorld()二、WebService在前台页面的JS调用方法1、首先通过下面的方法把Webservice在前台引用进来2、然后就可以通过JS程序进行调用,示例如下:----自写小例子---webService---: 腔码 [WebMethod]publicstringHelloWorld(){return"HelloWorld,wwg"}[WebMethod]publicintAddWwg(inta,intb){returna+b}exe---usingCallWebService.localhost//因为自己没有定义命名空间孝圆旦namespaceCallWebService{publicpartialclassForm1:Form{publicForm1(){InitializeComponent()}privatevoidbutton1_Click(objectsender,EventArgse){ServiceserviceWwg=newService()inti1=Int32.Parse(txt1.Text.ToString())inti2=Int32.Parse(txt2.Text.ToString())intiResult=serviceWwg.AddWwg(i1,i2)lb1.Text=iResult.ToString()}privatevoidbutton2_Click(objectsender,EventArgse){CallWebService.localhost.ServiceserviceWwg=newCallWebService.localhost.Service()stringstrResult=serviceWwg.HelloWorld()lb1.Text=strResult.ToString()}}}欢迎分享,转载请注明来源:内存溢出
评论列表(0条)