标题:[求助]调用web服务,无法连接远程服务器?
只看楼主
hc27080401
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2007-4-5
 问题点数:0 回复次数:0 
[求助]调用web服务,无法连接远程服务器?


用c#建立的一个网站,在service.cs中添加
[WebMethod]
public ulong fibonacci(int n)
{
if (n <= 2)
return (ulong)1;
else return (fibonacci(n - 1) + fibonacci(n - 2));
}
生成成功。

再用vb建立一个窗体程序,添加web引用,在button中写入以下代码
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim intInput As Integer
Dim intResult As UInt64
Dim strInput As String
strInput = TextBox1.Text
intInput = Int32.Parse(strInput)
Dim dd As webdy.localhost.Service
dd = New webdy.localhost.Service
intResult = dd.fibonacci(intInput)
TextBox2.Text = Str(intResult)

End Sub
生成成功,但是无法连接远程服务器。请大侠帮忙!

搜索更多相关主题的帖子: web 服务器 
2007-05-22 12:48



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-141466-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.329946 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved