主頁 > 知識(shí)庫 > .net 通過URL推送POST數(shù)據(jù)具體實(shí)現(xiàn)

.net 通過URL推送POST數(shù)據(jù)具體實(shí)現(xiàn)

熱門標(biāo)簽:電銷機(jī)器人 數(shù)據(jù) 云狐人工智能電話機(jī)器人 地圖標(biāo)注多少錢一張 ai電銷機(jī)器人對(duì)貸款有幫助嗎 宿遷智能外呼系統(tǒng)排名 怎樣給陜西地圖標(biāo)注顏色 福州人工智能電銷機(jī)器人加盟 400電話辦理信任翰諾科技 廣州銷售外呼系統(tǒng)定制

由于到了一家新公司重新開始接觸MVC和其他的一些東西。所以的重新拾起許多東西。

前一段時(shí)間讓我寫一個(gè)和第三方公司推送對(duì)接的方法。通過對(duì)方提供的URL把數(shù)據(jù)post推送出去。

我把url到了web.config里

復(fù)制代碼 代碼如下:

add key="urlStrings" value="urladdress"/>

在.CS文件里

復(fù)制代碼 代碼如下:

private string postString = System.Configuration.ConfigurationManager.AppSettings["urlStrings"].ToString();

因?yàn)槲疫@邊是把數(shù)據(jù)以xml文本的形式傳送出去所以要對(duì)數(shù)據(jù)進(jìn)行包裝,然后通過HttpWebRequest請(qǐng)求發(fā)送數(shù)據(jù)。

復(fù)制代碼 代碼如下:

string body = string.Format(@"?xml version=""1.0"" encoding=""UTF-8""?>
Body>
ValidId>{0}/ValidId>
OrderId>{1}/OrderId>
Count>{2}/Count>
ValidTime>{3}/ValidTime>
Remark/>
/Body>", consumption.Id, consumption.Order.AgentOrderId, consumption.Count, consumption.CreateTime.DateTimeToDateString("yyyy-MM-dd HH:mm:ss"));

                string request = BuildRequest(body);

                HttpWebRequest hwr = (HttpWebRequest)WebRequest.Create(postString);
                hwr.Method = "POST";
                hwr.Headers.Add("X-Auth-Token", HttpUtility.UrlEncode("openstack"));
                hwr.ContentType = "application/json";
                //hwr.Accept = "application/xml";
                hwr.AllowAutoRedirect = true;

                byte[] dates = Encoding.UTF8.GetBytes(request);
                int count = dates.Length;
                //Stream newStream = hwr.GetRequestStream();
                MemoryStream newStream = new MemoryStream();
                try
                {
                    log.Add("開始請(qǐng)求");
                    newStream.Write(dates, 0, dates.Length);
                    hwr.ContentLength = newStream.Length;
                    Stream requestStream = hwr.GetRequestStream();
                    newStream.Position = 0L;
                    newStream.CopyTo(requestStream);
                    newStream.Close();
                    requestStream.Close();

在這個(gè)地方值得我注意的是剛開始的時(shí)候我最早的MemoryStream用的是Stream。但是Stream數(shù)據(jù)流會(huì)莫名的報(bào)錯(cuò)。Stream數(shù)據(jù)流不能進(jìn)行l(wèi)ength查找操作

后來我也是經(jīng)過網(wǎng)上查找找了解決辦法,用MemoryStream來暫代Stream,最后把Stream上的一些查找操作放在MemoryStream上來進(jìn)行,最后再通過MemoryStream的CopyTo()方法將數(shù)據(jù)導(dǎo)入Stream數(shù)據(jù)流里。

最后的是數(shù)據(jù)的接收,這個(gè)就簡單一些

復(fù)制代碼 代碼如下:

HttpWebResponse hwResponse =(HttpWebResponse)hwr.GetResponse();
                    Stream stream = null;
                   stream= hwResponse.GetResponseStream();
                    StreamReader reader = new StreamReader(stream, System.Text.Encoding.Default, true);
                    string file = reader.ReadToEnd();
                    UTF8Encoding UTF = new UTF8Encoding();
                    Byte[] Bytes = UTF.GetBytes(file);
                    file = UTF.GetString(Bytes);

這個(gè)地方有一個(gè)對(duì)數(shù)據(jù)編碼的轉(zhuǎn)換,我是轉(zhuǎn)為UTF-8編碼。

最后的是我對(duì)接收數(shù)據(jù)的處理,因?yàn)槲医邮盏囊彩莤ml文本形式的數(shù)據(jù),所以還有做一些處理操作,也方便自己進(jìn)行后續(xù)操作。

復(fù)制代碼 代碼如下:

HttpWebResponse hwResponse =(HttpWebResponse)hwr.GetResponse();
                    Stream stream = null;
                   stream= hwResponse.GetResponseStream();
                    StreamReader reader = new StreamReader(stream, System.Text.Encoding.Default, true);
                    string file = reader.ReadToEnd();
                    UTF8Encoding UTF = new UTF8Encoding();
                    Byte[] Bytes = UTF.GetBytes(file);
                    file = UTF.GetString(Bytes);
string strBody = TCodeServiceCrypt.Decrypt3DESFromBase64(GetElementValue(doc.Element("Response").Element("Body")), UserFunc.SecretKey);
                        XDocument xBody = XDocument.Parse(strBody);
                        string userId = GetElementValue(xBody.Element("Body").Element("UseId"));

這個(gè)就是我這次使用的一些應(yīng)用。

我是一個(gè)新手,請(qǐng)多指教。

您可能感興趣的文章:
  • 基于SignalR的消息推送與二維碼掃描登錄實(shí)現(xiàn)代碼
  • Asp.NET MVC中使用SignalR實(shí)現(xiàn)推送功能
  • 使用SignalR推送服務(wù)在Android的實(shí)現(xiàn) SignalA
  • asp.net mvc實(shí)現(xiàn)簡單的實(shí)時(shí)消息推送
  • ASP.NET實(shí)現(xiàn)推送文件到瀏覽器的方法
  • .net平臺(tái)推送ios消息的實(shí)現(xiàn)方法
  • SignalR Self Host+MVC等多端消息推送服務(wù)(二)
  • SignalR Self Host+MVC等多端消息推送服務(wù)(一)
  • SignalR Self Host+MVC等多端消息推送服務(wù)(三)

標(biāo)簽:新疆 焦作 宜春 曲靖 黃南 延安 綿陽 大興安嶺

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《.net 通過URL推送POST數(shù)據(jù)具體實(shí)現(xiàn)》,本文關(guān)鍵詞  .net,通過,URL,推送,POST,數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《.net 通過URL推送POST數(shù)據(jù)具體實(shí)現(xiàn)》相關(guān)的同類信息!
  • 本頁收集關(guān)于.net 通過URL推送POST數(shù)據(jù)具體實(shí)現(xiàn)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章