Здравствуйте столкнулся с проблемой Сериализация и Десериализация в моем проекте все прекрасно работало на Json
было сделано так что нажимая на кнопку get all шел запрос к сервису я в форме видел результат. Сейчас я столкнулся с проблемой такой что я все это хочу переделать в XML формат. Загружая проект переходя на локальный хост потом в
--> ServiceContracts
--> CityManagement.svc и в URL "http://localhost:57385/ServiceContracts/CityManagement.svc/
GetAllCities"
Получаю запрос в XML формате, это работает но вот уже переходя на форму понятное дело в моем коде есть ошибки ((когда нажимаю получаю ошибку вообщем через дебаг видно что он NULL заполнил )) там остались отрывки от Json ,помогите исправить на xml чтоб нажав на кнопку получил бы результат ((Проект я предоставил в формате .rar там надо будет web.config
заменить после того как запустите в MS sql создастся база VoiceVote ну и уже замените на свой адрес)) Если что то не понятно и надо будет предоставить еще инфу сделаю максимально быстро но думаю вряд ли так как проект и код в ваших руках(( Большое спасибо за ранее ))
Код выглядит вот так вот
C# |
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
| using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Configuration;
using System.Net;
using ClientApp.Models;
using System.Web.Script.Serialization;
using WCFService.ServiceModels;
using Newtonsoft.Json;
using System.IO;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using System.Xml.Linq;
namespace ClientApp
{
public partial class Form1 : Form
{
string CityURL = ConfigurationSettings.AppSettings["CityService"];
public Form1()
{
InitializeComponent();
}
private void button_getAll_Click(object sender, EventArgs e)
{
try
{
WebClient wbc = new WebClient();
wbc.Encoding = Encoding.UTF8;
wbc.BaseAddress = CityURL;
var result = wbc.DownloadString($"{CityURL}/GetAllCities");
XElement xmlDocumentWithoutNs = RemoveAllNamespaces(XElement.Parse(result));
result = xmlDocumentWithoutNs.ToString();
XmlSerializer dcs = new XmlSerializer(typeof(Response<List<City>>));
MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(result));
Response<List<City>> ct = (Response<List<City>>)dcs.Deserialize(ms);
//XmlReader reader = XmlReader.Create(new StringReader(result));
//Response<List<City>> ct = (Response<List<City>>)dcs.Deserialize(reader);
if (ct.IsError)
throw new Exception(ct.ErrorMessage);
dataGridView1.DataSource = ct.Data;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private static XElement RemoveAllNamespaces(XElement xmlDocument)
{
if (!xmlDocument.HasElements)
{
XElement xElement = new XElement(xmlDocument.Name.LocalName);
xElement.Value = xmlDocument.Value;
foreach (XAttribute attribute in xmlDocument.Attributes())
xElement.Add(attribute);
return xElement;
}
return new XElement(xmlDocument.Name.LocalName, xmlDocument.Elements().Select(el => RemoveAllNamespaces(el)));
}
private void button_add_Click(object sender, EventArgs e)
{
FrmCity fcity = new FrmCity();
fcity.Show();
}
private void button_edit_Click(object sender, EventArgs e)
{
dataGridView1.Columns[0].HeaderText = "ID";
dataGridView1.Columns[0].Name = "ID";
var row = dataGridView1.CurrentRow;
int Id = (int)row.Cells["ID"].Value;
FrmCity fcity = new FrmCity(Id);
fcity.Show();
}
private void button_delete_Click(object sender, EventArgs e)
{
dataGridView1.Columns[0].HeaderText = "ID";
dataGridView1.Columns[0].Name = "ID";
var row = dataGridView1.CurrentRow;
int Id = (int)row.Cells["ID"].Value;
DialogResult decision = MessageBox.Show("Are you sure?", "Delete Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (decision == DialogResult.Yes)
{
try
{
WebClient wbc = new WebClient();
wbc.Encoding = Encoding.UTF8;
wbc.BaseAddress = CityURL;
WebRequest request = WebRequest.Create($"{CityURL}/DeleteCity/{Id}");
request.Method = "DELETE";
request.ContentType = "application/json; charset=utf-8";
WebResponse responce = request.GetResponse();
Stream reader = responce.GetResponseStream();
StreamReader sReader = new StreamReader(reader);
Response<bool> cot = JsonConvert.DeserializeObject<Response<bool>>(sReader.ReadToEnd());
if (cot.IsError)
throw new Exception(cot.ErrorMessage);
sReader.Close();
MessageBox.Show("Successfully Deleted", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
private void dataGridView1_RowStateChanged(object sender, DataGridViewRowStateChangedEventArgs e)
{
if (e.StateChanged != DataGridViewElementStates.Selected) return;
button_edit.Enabled = true;
button_delete.Enabled = true;
}
}
} |
|