GlobalConfig.cs
14.0 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
using System;
using System.Xml;
using System.IO;
using System.Configuration;
using System.Collections;
namespace App
{
/// <summary>
/// GlobalConfig 的摘要说明。
/// </summary>
public class GlobalConfig
{
public const string CLIENTCONFIGNAME = "App.exe.config";
private const String MyCMMI_LICENCEPATH = "MyCMMI.MyCMMI.LicencePath";
private const String MyCMMI_LICENCEPATH_DEFAULT = @"D:\MyCMMI.lic";
private static string strMyCMMILicencePath = MyCMMI_LICENCEPATH_DEFAULT;
private string _WebServiceUrl = "";
protected Hashtable m_wsConfig = new Hashtable(11);
//private const string CLIENTCONFIGNAME = "MyCMMI.exe.config";
private const string DEFAULTWEBSERVICEURL = @"http://localhost/WebService/";
private const string SECTIONTYPE = @"System.Configuration.SingleTagSectionHandler";
private string[] UseList;
private string _UseName = "";
private string _DateTime = "";
private string _Project = "";
private string _Language = "";
public GlobalConfig()
{
Initialize();
}
/// <summary>
/// 初始化GlobalConfig参数
/// </summary>
public void Initialize()
{
InitializeWebServiceHashtable();
if (CheckConfig())
{
//GetUseConfig();//获取用户信息到
}
else
{
this._WebServiceUrl = "";
}
}
/// <summary>
/// 检测用户端MyCMMI.app.exe.config的文件是否存在,格式是否正确.
/// </summary>
/// <returns></returns>
public bool CheckConfig()
{
FileInfo fi = new FileInfo(CLIENTCONFIGNAME);
if (!fi.Exists)
{
if (CreateDefaultConfig())//如没有MyCMMI.app.exe.config则新建
{
return true;
}
else
{
return false;
}
}
else
{
XmlDocument doc = new XmlDocument();
try //防止格式出错
{
doc.Load(System.Environment.CurrentDirectory + @"\" + CLIENTCONFIGNAME);
}
catch
{
return false;
}
#region 检测WebService设置
XmlNode node = doc.SelectSingleNode("descendant::BizFacade.Properties.Settings");
if (node.HasChildNodes && node.ChildNodes.Count == m_wsConfig.Count)
{
IEnumerator ienum = node.GetEnumerator();
XmlNode childnode;
string tmpurl1 = "";
string tmpurl2 = "";
while (ienum.MoveNext())
{
childnode = (XmlNode) ienum.Current;
//string s_KeyName = childnode.Attributes["name"].Value;
if (childnode.FirstChild.InnerText == null)
return false;
tmpurl2 = childnode.FirstChild.InnerText.ToString();
tmpurl2 = tmpurl2.Substring(0, tmpurl2.LastIndexOf(@"/") + 1);
if (!string.IsNullOrEmpty(tmpurl1) && (string.Compare(tmpurl1, tmpurl2, true) != 0))
return false;
tmpurl1 = childnode.FirstChild.InnerText.ToString();
tmpurl1 = tmpurl1.Substring(0, tmpurl1.LastIndexOf(@"/") + 1);
}
tmpurl2 = node.FirstChild.FirstChild.InnerText.ToString();
tmpurl2 = tmpurl2.Substring(0, tmpurl2.LastIndexOf(@"/") + 1);
this._WebServiceUrl = tmpurl2;
}
else
{
//节点不足,添加节点
if (!AddWebServiceUrl())
{
return false;
}
}
#endregion
return true;
}
}
/// <summary>
/// 添加新的WebService到MyCMMI.app.exe.config
/// </summary>
/// <returns></returns>
public bool AddWebServiceUrl()
{
string f_wsHead = "";
XmlDocument doc = new XmlDocument();
try
{
doc.Load(System.Environment.CurrentDirectory + @"\" + CLIENTCONFIGNAME);
}
catch
{
return false;
}
XmlNode node = doc.FirstChild;
node = node.SelectSingleNode("descendant::BizFacade.Properties.Settings");
if (node.HasChildNodes)
{
IEnumerator ienum = node.GetEnumerator();
XmlNode childnode;
string tmpurl1 = "";
string tmpurl2 = "";
while (ienum.MoveNext())
{
childnode = (XmlNode)ienum.Current;
if (childnode.Attributes["name"] == null)
{
return false;
}
tmpurl2 = childnode.FirstChild.InnerText.ToString();
tmpurl2 = tmpurl2.Substring(0, tmpurl2.LastIndexOf(@"/") + 1);
if (!String.IsNullOrEmpty(tmpurl1) && tmpurl1 != tmpurl2)
{
return false;
}
tmpurl1 = childnode.FirstChild.InnerText.ToString();
tmpurl1 = tmpurl1.Substring(0, tmpurl1.LastIndexOf(@"/") + 1);
}
tmpurl2 = node.FirstChild.InnerText.ToString();
tmpurl2 = tmpurl2.Substring(0, tmpurl2.LastIndexOf(@"/") + 1);
this._WebServiceUrl = tmpurl2;
f_wsHead = tmpurl2;
node.RemoveAll();
}
else
{
f_wsHead = DEFAULTWEBSERVICEURL;
this._WebServiceUrl = f_wsHead;
}
foreach (string f_wsKey in m_wsConfig.Keys)
{
XmlNode nodechild = doc.CreateNode(XmlNodeType.Element, "setting", "");
XmlAttribute nodechildAttribute = doc.CreateAttribute("name");
nodechildAttribute.Value = f_wsKey.ToString();
nodechild.Attributes.Append(nodechildAttribute);
XmlAttribute nodechildAttributeTwo = doc.CreateAttribute("serializeAs");
nodechildAttributeTwo.Value = "String";
nodechild.Attributes.Append(nodechildAttributeTwo);
XmlNode nodechildschild = doc.CreateNode(XmlNodeType.Element, "value", "");
if ((f_wsKey == "Edition") || (f_wsKey == "LicenseServerIP"))
{
nodechildschild.InnerText = m_wsConfig[f_wsKey].ToString();
}
else
{
nodechildschild.InnerText = f_wsHead + m_wsConfig[f_wsKey];
}
nodechild.AppendChild(nodechildschild);
node.AppendChild(nodechild);
}
try
{
doc.Save(System.Environment.CurrentDirectory + @"\" + CLIENTCONFIGNAME);
}
catch
{
return false;
}
return true;
}
/// <summary>
/// 创建默认的MyCMMI.App.Exe.Config 本函数只建立最基本的WebService设置
/// </summary>
/// <returns></returns>
public bool CreateDefaultConfig()
{
try
{
XmlTextWriter writer = null;
writer = new XmlTextWriter(System.Environment.CurrentDirectory + @"\" + CLIENTCONFIGNAME, null);
writer.Formatting = Formatting.Indented;
writer.WriteStartElement("configuration");
writer.WriteStartElement("configSections");
writer.WriteStartElement("section");
writer.WriteAttributeString("name", "administrator");
writer.WriteAttributeString("type", "System.Configuration.SingleTagSectionHandler");
writer.WriteEndElement();
writer.WriteStartElement("sectionGroup");
writer.WriteAttributeString("name", "applicationSettings");
writer.WriteAttributeString("type",
"System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
writer.WriteStartElement("section");
writer.WriteAttributeString("name", "BizFacade.Properties.Settings");
writer.WriteAttributeString("type",
"System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
writer.WriteAttributeString("requirePermission", "false");
writer.WriteEndElement();
writer.WriteEndElement();
writer.WriteEndElement();
writer.WriteStartElement("applicationSettings");
writer.WriteStartElement("BizFacade.Properties.Settings");
foreach (string f_wsKey in m_wsConfig.Keys)
{
writer.WriteStartElement("setting");
writer.WriteAttributeString("name", f_wsKey);
writer.WriteAttributeString("serializeAs", "String");
writer.WriteStartElement("value");
writer.WriteString(DEFAULTWEBSERVICEURL + m_wsConfig[f_wsKey]);
writer.WriteEndElement();
writer.WriteEndElement();
}
writer.WriteEndElement();
writer.WriteEndElement();
writer.WriteStartElement("MyCMMIConfiguration");
writer.WriteStartElement("add ");
writer.WriteAttributeString("key", MyCMMI_LICENCEPATH);
writer.WriteStartElement("value");
writer.WriteString(strMyCMMILicencePath);
writer.WriteEndElement();
writer.WriteEndElement();
writer.WriteEndElement();
writer.WriteEndElement();
writer.Close();
//this._edition = "Chinese";
this._WebServiceUrl = DEFAULTWEBSERVICEURL;
}
catch (Exception ex)
{
string strEX = ex.ToString();
return false;
}
return true;
}
/// <summary>
/// 设置WebService
/// </summary>
/// <param name="Url">新的WebServiceUrl</param>
/// <returns></returns>
public bool SetWebServiceUrl(string Url)
{
if (!Url.EndsWith(@"/")) //若路径不是以\结尾,则追加之
Url += @"/";
XmlDocument doc = new XmlDocument();
try
{
doc.Load(System.Environment.CurrentDirectory + @"\" + CLIENTCONFIGNAME);
}
catch
{
return false;
}
XmlNode node = doc.FirstChild;
node = node.SelectSingleNode("descendant::BizFacade.Properties.Settings");
node.RemoveAll();
//XmlElement elem;
foreach (string f_wsKey in m_wsConfig.Keys)
{
XmlNode nodechild = doc.CreateNode(XmlNodeType.Element, "setting", "");
XmlAttribute nodechildAttribute = doc.CreateAttribute("name");
nodechildAttribute.Value = f_wsKey.ToString();
nodechild.Attributes.Append(nodechildAttribute);
XmlAttribute nodechildAttributeTwo = doc.CreateAttribute("serializeAs");
nodechildAttributeTwo.Value = "String";
nodechild.Attributes.Append(nodechildAttributeTwo);
XmlNode nodechildschild = doc.CreateNode(XmlNodeType.Element, "value", "");
if ((f_wsKey == "Edition") || (f_wsKey == "LicenseServerIP"))
{
nodechildschild.InnerText = m_wsConfig[f_wsKey].ToString();
}
else
{
nodechildschild.InnerText = Url + m_wsConfig[f_wsKey];
}
nodechild.AppendChild(nodechildschild);
node.AppendChild(nodechild);
}
try
{
doc.Save(System.Environment.CurrentDirectory + @"\" + CLIENTCONFIGNAME);
}
catch
{
return false;
}
return true;
}
/// <summary>
/// 初始化WebService哈希表.
/// </summary>
public void InitializeWebServiceHashtable()
{
//将MyCMMI需要的所有WebService加入到哈希表中BizFacade_DocTemplateSvc_DocTemplateSvc
m_wsConfig.Add("BizFacade_BaseSvc_BaseSvc", "BaseSvc.asmx");
m_wsConfig.Add("BizFacade_UpdateSvc_UpdateSvc", "UpdateSvc.asmx");
}
/// <summary>
/// WebService地址
/// </summary>
public string WebServiceUrl
{
get
{
return _WebServiceUrl;
}
set
{
_WebServiceUrl = value;
}
}
public string UseName
{
get
{
return _UseName;
}
set
{
_UseName = value;
}
}
public string DateTime
{
get
{
return _DateTime;
}
set
{
_DateTime = value;
}
}
public string Project
{
get { return _Project; }
set { _Project = value; }
}
public string Language
{
get { return _Language; }
set { _Language = value; }
}
}
}