C# ile xml post etme
16 Mayıs 2016 / 10:03
Burak
Merhaba arkadaşlar belki sizlere lazım olabilir c# ile belirtilen url ye xml post etme işlemi öncelikle aşağıdaki kütüphaneleri include ediyoruz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Threading; using System.Configuration; using System.Net; using System.Text.RegularExpressions; using System.Data.SqlClient; using System.IO; using Microsoft.Win32; using System.Web; |
Daha sonra post edicek kodlarımız ise aşağıdaki gibidir ;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
xml="<SingleTextSMS>"; xml += "<UserName>test</UserName>"; xml += "<PassWord>test</PassWord>"; //xml post başla string webpageContent = string.Empty; try { byte[] byteArray = Encoding.UTF8.GetBytes("data="+xml); HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create("url adresi"); webRequest.Method = "POST"; webRequest.ContentType = "application/x-www-form-urlencoded"; webRequest.ContentLength = byteArray.Length; using (Stream webpageStream = webRequest.GetRequestStream()) { webpageStream.Write(byteArray, 0, byteArray.Length); } using (HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse()) { using (StreamReader reader = new StreamReader(webResponse.GetResponseStream())) { webpageContent = reader.ReadToEnd(); } } } catch (Exception ex) { webpageContent = ex.Message; } MessageBox.Show(webpageContent); |
Etiketler: c# ile veri gönderme, c# ile xml gönderme
Bu Yazılarıda Okuyabilirsiniz...
Bir yanıt yazın