mono 调用windows webService
1. 实现linux mono Develop中调用windows 中的webService
l linux 与 windows 在一个局域网的网段中
l windows 的IIs中发布webService
2. windows 中的设置
l webService 的代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
namespace MonoWebService
{
/// <summary>
/// Service1 的摘要说明
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。
// [System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
string text=string.Format("Machine Name:{0} Time:{1}",this.Server.MachineName,DateTime.Now.ToString());
return text;
}
}
}
l 发布webService
l 在IE中测试
l 如果本机的防火强开启,请关闭。如果防火墙开启,windows会阻止linux的访问
3. Linux中的设置
l Mono中的调用代码
using System;
using System.Collections;
namespace WebServiceCallApp
{
class MainClass
{
public static void Main(string[] args)
{
//Console.WriteLine("Hello World!");
ArrayList myList=new ArrayList();
WinService.Service1 myService=new WinService.Service1();
Console.Write(myService.HelloWorld());
Console.Read();
}
}
}
l 确认Windows 的 WebService 可访问
l Mono中添加webService
注意一定要加成http://10.168.14.131/Service1.asmx?wsdl
Wsdl 必须有,不然monoDevelop 找不到webService
l 运行效果
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
· 我干了两个月的大项目,开源了!
· 千万级的大表,如何做性能调优?
· 盘点!HelloGitHub 年度热门开源项目
· Phi小模型开发教程:用C#开发本地部署AI聊天工具,只需CPU,不需要GPU,3G内存就可以运行,
· 你所不知道的 C/C++ 宏知识——基于《C/C++ 宏编程的艺术》