WCF學習筆記二:客戶端調用控制台宿主程式

来源:http://www.cnblogs.com/luming/archive/2017/11/10/7813461.html
-Advertisement-
Play Games

【GetData1】 【GetData2】 【GetData3】 【GetData4】 【GetData5】 【GetData6】 【GetData7】 【GetData8】 【GetData9】 【GetData10】 【GetData11】 【GetData12】 【GetData13】 【Ge ...


【GetData1】

//請求(Ajax使用jsonp實現跨域訪問)
$.ajax({
    type: "get",
    url: "http://192.168.5.168:8123/Service1.svc/GetData1",
    data: { value: "張三" },
    dataType: "jsonp",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function (error) {
        alert('error');
    }
});

//結果        
{"value":"張三"}
//請求
string result = GetSend("http://192.168.5.168:8123/Service1.svc/GetData1", "value=張三");
//結果
{"value":"張三"}

 

【GetData2】

//請求(Ajax使用jsonp實現跨域訪問)
$.ajax({
    type: "get",
    url: "http://192.168.5.168:8123/Service1.svc/GetData2",
    data: { cityid: "1001", cityname: "武漢市" },
    dataType: "jsonp",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function (error) {
        alert('error');
    }
});

//結果        
{"CityID":"1001","CityName":"武漢市"}

 

//請求
string result = GetSend("http://192.168.5.168:8123/Service1.svc/GetData2", "cityid=1001&cityname=武漢市");
//結果
{"CityID":"1001","CityName":"武漢市"}

 

【GetData3】

//請求(Ajax使用jsonp實現跨域訪問)
$.ajax({
    type: "get",
    url: "http://192.168.5.168:8123/Service1.svc/GetData3",
    data: { data: "{CityID:'1001',CityName:'江城'}" },
    dataType: "jsonp",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function (error) {
        alert('error');
    }
});

//結果        
{"CityID":"1001","CityName":"舊:江城 -> 新:武漢"}
//請求
string result = GetSend("http://192.168.5.168:8123/Service1.svc/GetData3", "data={CityID:'1001',CityName:'江城'}");
//結果
{"CityID":"1001","CityName":"舊:江城 -> 新:武漢"}


【GetData4】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData4",
    type: "get",
    data: { name: "張三" },
    success: function (data) {
        alert(data);
    },
    error: function () {
        alert('error');
    }
});

//結果        
WCF服務,顯示姓名:張三

 

//請求
string result = GetSend("http://192.168.5.168:8123/Service1.svc/GetData4", "name=張三");
//結果(註意:字元串兩端有雙引號)
"WCF服務,顯示姓名:張三"

 

【GetData5】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData5",
    type: "get",
    data: { userID: "1001", userName: "張三" },
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"UserID":"1001","UserName":"張三"}

 

//請求
string result = GetSend("http://192.168.5.168:8123/Service1.svc/GetData5", "userID=1001&userName=張三");
//結果
{"UserID":"1001","UserName":"張三"}

 

【GetData6】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData6",
    type: "post",
    contentType: "text/json",
    data: '{"name":"張三"}',
    success: function (data) {
        alert(data);
    },
    error: function () {
        alert('error');
    }
});

//結果        
WCF服務,顯示姓名:張三

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData6", "{\"name\":\"張三\"}");
//結果(註意:字元串兩端有雙引號)
"WCF服務,顯示姓名:張三"

 

【GetData7】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData7",
    type: "post",
    contentType: "text/json",
    data: '{"userID":"1001","userName":"張三"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"UserID":"1001","UserName":"張三"}

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData7", "{\"userID\":\"1001\",\"userName\":\"張三\"}");
//結果
{"UserID":"1001","UserName":"張三"}

 

【GetData8】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData8",
    type: "post",
    contentType: "text/json",
    data: '{"UserName":"張三","Sex":"男"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"UserID":1000,"UserName":"張三","Sex":"男"}

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData8", "{\"UserName\":\"張三\",\"Sex\":\"男\"}");
//結果
{"UserID":1000,"UserName":"張三","Sex":""}

 

【GetData9】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData9",
    type: "post",
    contentType: "text/json",
    data: '{"UserName":"張三","Sex":"男"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"UserID":1000,"UserName":"張三","Sex":"男"}

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData9", "{\"UserName\":\"張三\",\"Sex\":\"男\"}");
//結果
{"UserID":1000,"UserName":"張三","Sex":""}

 

【GetData10】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData10",
    type: "post",
    contentType: "text/json",
    data: '{"Users":[{"UserID":1001,"UserName":"張三","Sex":"男"},{"UserID":1002,"UserName":"李四","Sex":"女"}]}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
[{"UserID":1001,"UserName":"張三","Sex":"男"},{"UserID":1002,"UserName":"李四","Sex":"女"}]

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData10", "{\"Users\":[{\"UserID\":1001,\"UserName\":\"張三\",\"Sex\":\"男\"},{\"UserID\":1002,\"UserName\":\"李四\",\"Sex\":\"女\"}]}");
//結果
[{"UserID":1001,"UserName":"張三","Sex":""},{"UserID":1002,"UserName":"李四","Sex":""}]

 

【GetData11】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData11",
    type: "post",
    contentType: "text/json",
    data: '{"Users":[{"UserID":1001,"UserName":"張三","Sex":"男"},{"UserID":1002,"UserName":"李四","Sex":"女"}]}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
[{"UserID":1001,"UserName":"張三","Sex":"男"},{"UserID":1002,"UserName":"李四","Sex":"女"}]

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData11", "{\"Users\":[{\"UserID\":1001,\"UserName\":\"張三\",\"Sex\":\"男\"},{\"UserID\":1002,\"UserName\":\"李四\",\"Sex\":\"女\"}]}");
//結果
[{"UserID":1001,"UserName":"張三","Sex":""},{"UserID":1002,"UserName":"李四","Sex":""}]

 

【GetData12】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData12",
    type: "post",
    contentType: "text/json",
    data: '{"UserID":"1001","UserName":"張三"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"UserID":"1001","UserName":"張三","CurrentTime":"2017-11-02 14:49:31"}

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData12", "{\"UserID\":\"1001\",\"UserName\":\"張三\"}");
//結果
{"UserID":"1001","UserName":"張三","CurrentTime":"2017-11-02 14:49:31"}

 

【GetData13】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData13",
    type: "post",
    contentType: "text/json",
    data: '{"UserID":"1001","UserName":"張三"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"Items":[{"__type":"Entity:#TalentCloud.Base.Entities","UserID":"1001","UserName":"張三","CurrentTime":"2017-11-03 09:35:02","UserAge":"男"},{"__type":"Entity:#TalentCloud.Base.Entities","UserID":"1002","UserName":"李四","CurrentTime":"2017-11-03 09:35:02","UserAge":"女"}],"Total":"0","Info":""}

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData13", "{\"UserID\":\"1001\",\"UserName\":\"張三\"}");
//結果
{"Items":[{"__type":"Entity:#TalentCloud.Base.Entities","UserID":"1001","UserName":"張三","CurrentTime":"2017-11-03 09:35:02","UserAge":""},{"__type":"Entity:#TalentCloud.Base.Entities","UserID":"1002","UserName":"李四","CurrentTime":"2017-11-03 09:35:02","UserAge":""}],"Total":"0","Info":""}

 

【GetData14】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData14",
    type: "post",
    contentType: "text/json",
    data: '{"userID":"1001","userName":"張三"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"UserAge":"男","UserID":1001,"UserName":"張三"}

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData14", "{\"userID\":\"1001\",\"userName\":\"張三\"}");
//結果
{"UserAge":"","UserID":1001,"UserName":"張三"}

 

【GetData15】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData15",
    type: "post",
    contentType: "text/json",
    data: '{"UserID":"1001","UserName":"張三","UserAge":"男"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
{"UserAge":"男","UserID":1001,"UserName":"張三"}

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData15", "{\"UserID\":\"1001\",\"UserName\":\"張三\",\"UserAge\":\"男\"}");
//結果
{"UserAge":"","UserID":1001,"UserName":"張三"}

 

【GetData16】

//請求
$.ajax({
    url: "http://192.168.5.168:8123/Service1.svc/GetData16",
    type: "post",
    contentType: "text/json",
    data: '{"userID":"1001","userName":"張三"}',
    dataType: "json",
    success: function (data) {
        alert(JSON.stringify(data));
    },
    error: function () {
        alert('error');
    }
});

//結果        
[{"UserAge":"男","UserID":1001,"UserName":"張三"},{"UserAge":"女","UserID":1002,"UserName":"李四"}]

 

//請求
string result = PostJsonSend("http://192.168.5.168:8123/Service1.svc/GetData16", "{\"userID\":\"1001\",\"userName\":\"張三\"}");
//結果
[{"UserAge":"","UserID":1001,"UserName":"張三"},{"UserAge":"","UserID":1002,"UserName":"李四"}]

 

[客戶端調用幫助方法]

public static string GetSend(string Url, string postDataStr)
{
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url + (postDataStr == "" ? "" : "?") + postDataStr);
    request.Method = "GET";
    request.ContentType = "text/html;charset=UTF-8";

    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    Stream myResponseStream = response.GetResponseStream();
    StreamReader myStreamReader = new StreamReader(myResponseStream, Encoding.GetEncoding("utf-8"));
    string retString = myStreamReader.ReadToEnd();
    myStreamReader.Close();
    myStreamReader.Dispose();
    myResponseStream.Close();
    myResponseStream.Dispose();
    response.Close();
    request.Abort();

    return retString;
}

public static string PostJsonSend(string url,string data)
{
    string rs = null;
    ServicePointManager.DefaultConnectionLimit = 300;
    System.GC.Collect();
    CookieContainer cookieContainer = new CookieContainer();
    // 設置提交的相關參數
    HttpWebRequest request = null;
    HttpWebResponse SendSMSResponse = null;
    Stream dataStream = null;
    StreamReader SendSMSResponseStream = null;
    try
    {
        request = WebRequest.Create(url) as HttpWebRequest;
        request.Method = "POST";
        request.KeepAlive = false;
        request.ServicePoint.ConnectionLimit = 300;
        request.AllowAutoRedirect = true;
        request.Timeout = 90000;
        request.ReadWriteTimeout = 10000;
        request.ContentType = "application/json";
        request.Accept = "application/xml";
        //request.Headers.Add("X-Auth-Token", HttpUtility.UrlEncode("openstack"));
        byte[] bytes = Encoding.UTF8.GetBytes(data);
        request.Proxy = null;
        request.CookieContainer = cookieContainer;

        using (dataStream = request.GetRequestStream())
        {
            dataStream.Write(bytes, 0, bytes.Length);
        }
        SendSMSResponse = (HttpWebResponse)request.GetResponse();
        if (SendSMSResponse.StatusCode == HttpStatusCode.RequestTimeout)
        {
            if (SendSMSResponse != null)
            {
                SendSMSResponse.Close();
                SendSMSResponse = null;
            }
            if (request != null)
            {
                request.Abort();
            }
            return null;
        }
        SendSMSResponseStream = new StreamReader(SendSMSResponse.GetResponseStream(), Encoding.GetEncoding("utf-8"));
        string strRespone = SendSMSResponseStream.ReadToEnd();

        return strRespone;
    }
    catch (Exception ex)
    {
        rs = ex.Message;
        if (dataStream != null)
        {
            dataStream.Close();
            dataStream.Dispose();
            dataStream = null;
        }
        if (SendSMSResponseStream != null)
        {
            SendSMSResponseStream.Close();
            SendSMSResponseStream.Dispose();
            SendSMSResponseStream = null;
        }
        if (SendSMSResponse != null)
        {
            SendSMSResponse.Close();
            SendSMSResponse = null;
        }
        if (request != null)
        {
            request.Abort();
        }
    }
    finally
    {
        if (dataStream != null)
        {
            dataStream.Close();
            dataStream.Dispose();
            dataStream = null;
        }
        if (SendSMSResponseStream != null)
        {
            SendSMSResponseStream.Close();
            SendSMSResponseStream.Dispose();
            SendSMSResponseStream = null;
        }
        if (SendSMSResponse != null)
        {
            SendSMSResponse.Close();
            SendSMSResponse = null;
        }
        if (request != null)
        {
            request.Abort();
        }
    }
    return rs;
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • BlockingCollection集合是一個擁有阻塞功能的集合,它就是完成了經典生產者消費者的演算法功能。所以BlockingCollection 很適合構造流水線模式的併發方案 BlockingCollection集合是一個擁有阻塞功能的集合,它就是完成了經典生產者消費者的演算法功能。一般情況下,我 ...
  • 原文出處 [Trailmax Tech Max Vasilyev: ASP.Net MVC development in Aberdeen, Scotland ](http://tech.trailmax.info/2014/08/aspnet identity cookie format/) "中 ...
  • 一、自定義Base16編碼原理 Base16編碼跟Base64編碼原理上有點不同,當然前面轉換是一樣的,都是是將輸入的字元串根據預設編碼轉換成一個位元組序列,而這個位元組序列裡面其實就是存的ASCII碼,其次,將每個ASCII碼轉換成8位二進位,每個八位二進位拆分成4位一組的二進位,然後將每4位一組的二 ...
  • 一個新的項目需要用到系統置頂的功能,本來是件很簡單的事情,但是越做發現並不那麼簡單,所以記錄下來: 系統環境:win7旗艦版本64位; IDE :VS2013; WPF+C#開發。 一、開始用Topmost屬性設置為true。 運行木有問題,很簡單喲。呵呵,隨後運行打開osk.exe;卵,被按下去了 ...
  • .Net 傳統非同步編程概述 .NET Framework 提供以下兩種執行 I/O 綁定和計算綁定非同步操作的標準模式: 非同步編程模型 (APM),在該模型中非同步操作由一對 Begin/End 方法(如 FileStream.BeginRead 和 Stream.EndRead)表示。 基於事件的非同步 ...
  • 現在在做的項目美工要求比較高,所以根據網上搜索的資料,自定義了一整套的彈出框,供大家參考,之網上其他大神有調用系統ICO的,容易導致異常,我在此使用本地資源ICO,效率高不異常。using System; using System.Drawing; using System.Drawing.Draw... ...
  • 項目實際開發中需要根據不同的應用場景利用Show和ShowDialog,尤其是三級彈窗,慎用ShowDialog,否則會導致關閉第三級窗體時,自動關閉第二級,解決方案就是在第一級窗體彈出時採用Show(this)的方法。 ...
  • 一、前言 .net core 2.0正式版已經發佈幾個月了,經過研究,決定把項目轉移過來,新手的話可以先看一些官方介紹 傳送門:https://docs.microsoft.com/zh-cn/dotnet/core/ 由於在領域設計模型上遇到了一些坑,故給大家分享出來自己的一些解決方案。 ok,直 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...