日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > windows >内容正文

windows

mono 调用windows webService

發布時間:2023/12/10 windows 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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?運行效果

?

?

轉載于:https://www.cnblogs.com/hbb0b0/archive/2009/06/03/1495608.html

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的mono 调用windows webService的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。