개정판 a8aec13a
issue #000000 NullToCollapsedConverter 추가
Change-Id: I15c20c65d68a1b004959529e28d023e60c59fbd5
KCOM/App.xaml.cs | ||
---|---|---|
281 | 281 |
#region custombinding |
282 | 282 |
var customBinding = new System.ServiceModel.Channels.CustomBinding() |
283 | 283 |
{ |
284 |
OpenTimeout = new TimeSpan(0, 15, 0),
|
|
285 |
ReceiveTimeout = new TimeSpan(0, 15, 0),
|
|
286 |
CloseTimeout = new TimeSpan(0, 15, 0),
|
|
287 |
SendTimeout = new TimeSpan(0, 15, 0),
|
|
284 |
OpenTimeout = new TimeSpan(0, 30, 0),
|
|
285 |
ReceiveTimeout = new TimeSpan(0, 30, 0),
|
|
286 |
CloseTimeout = new TimeSpan(0, 30, 0),
|
|
287 |
SendTimeout = new TimeSpan(0, 30, 0),
|
|
288 | 288 |
}; |
289 | 289 | |
290 | 290 |
var messageEncoding = new WcfExtensions.ServiceModel.Channels.CompressionBindingElement(); |
291 |
messageEncoding.Level = WcfExtensions.ServiceModel.Channels.CompressionLevel.Fast;
|
|
291 |
messageEncoding.Level = WcfExtensions.ServiceModel.Channels.CompressionLevel.Maximum;
|
|
292 | 292 | |
293 | 293 |
var httpTranport = new System.ServiceModel.Channels.HttpTransportBindingElement |
294 | 294 |
{ |
295 | 295 |
MaxBufferPoolSize = Int32.MaxValue, |
296 | 296 |
MaxBufferSize = Int32.MaxValue, |
297 | 297 |
MaxReceivedMessageSize = Int32.MaxValue, |
298 |
RequestInitializationTimeout = new TimeSpan(0, 10, 0),
|
|
298 |
RequestInitializationTimeout = new TimeSpan(0, 30, 0),
|
|
299 | 299 |
//UseDefaultWebProxy = false, |
300 | 300 |
//ProxyAddress = new Uri("Http://127.0.0.1:8888") |
301 | 301 |
}; |
... | ... | |
312 | 312 |
#else |
313 | 313 | |
314 | 314 |
#region 기본 binding |
315 |
BasicHttpBinding basicHttpBinding = new BasicHttpBinding(BasicHttpSecurityMode.None); |
|
316 |
basicHttpBinding.Security = new BasicHttpSecurity { Transport = new HttpTransportSecurity { ClientCredentialType = HttpClientCredentialType.None, ProxyCredentialType = HttpProxyCredentialType.None }, Mode = BasicHttpSecurityMode.None, Message = new BasicHttpMessageSecurity { AlgorithmSuite = System.ServiceModel.Security.SecurityAlgorithmSuite.Basic256, ClientCredentialType = BasicHttpMessageCredentialType.UserName } }; |
|
317 |
basicHttpBinding.MaxBufferSize = 2147483647; |
|
318 |
basicHttpBinding.MaxBufferPoolSize = 2147483647; |
|
319 |
basicHttpBinding.MaxReceivedMessageSize = 2147483647; |
|
320 |
basicHttpBinding.OpenTimeout = new TimeSpan(4, 30, 0); |
|
321 |
basicHttpBinding.ReceiveTimeout = new TimeSpan(4, 30, 0); |
|
322 |
basicHttpBinding.CloseTimeout = new TimeSpan(4, 30, 0); |
|
323 |
basicHttpBinding.SendTimeout = new TimeSpan(4, 30, 0); |
|
324 |
basicHttpBinding.TextEncoding = System.Text.Encoding.UTF8; |
|
325 |
basicHttpBinding.TransferMode = TransferMode.Buffered; |
|
326 |
basicHttpBinding.MessageEncoding = WSMessageEncoding.Text; |
|
327 |
basicHttpBinding.HostNameComparisonMode = HostNameComparisonMode.StrongWildcard; |
|
315 |
//BasicHttpBinding basicHttpBinding = new BasicHttpBinding(BasicHttpSecurityMode.None);
|
|
316 |
//basicHttpBinding.Security = new BasicHttpSecurity { Transport = new HttpTransportSecurity { ClientCredentialType = HttpClientCredentialType.None, ProxyCredentialType = HttpProxyCredentialType.None }, Mode = BasicHttpSecurityMode.None, Message = new BasicHttpMessageSecurity { AlgorithmSuite = System.ServiceModel.Security.SecurityAlgorithmSuite.Basic256, ClientCredentialType = BasicHttpMessageCredentialType.UserName } };
|
|
317 |
//basicHttpBinding.MaxBufferSize = 2147483647;
|
|
318 |
//basicHttpBinding.MaxBufferPoolSize = 2147483647;
|
|
319 |
//basicHttpBinding.MaxReceivedMessageSize = 2147483647;
|
|
320 |
//basicHttpBinding.OpenTimeout = new TimeSpan(4, 30, 0);
|
|
321 |
//basicHttpBinding.ReceiveTimeout = new TimeSpan(4, 30, 0);
|
|
322 |
//basicHttpBinding.CloseTimeout = new TimeSpan(4, 30, 0);
|
|
323 |
//basicHttpBinding.SendTimeout = new TimeSpan(4, 30, 0);
|
|
324 |
//basicHttpBinding.TextEncoding = System.Text.Encoding.UTF8;
|
|
325 |
//basicHttpBinding.TransferMode = TransferMode.Buffered;
|
|
326 |
//basicHttpBinding.MessageEncoding = WSMessageEncoding.Text;
|
|
327 |
//basicHttpBinding.HostNameComparisonMode = HostNameComparisonMode.StrongWildcard;
|
|
328 | 328 | |
329 | 329 | |
330 |
System.ServiceModel.Channels.ReliableSessionBindingElement reliableSession = new System.ServiceModel.Channels.ReliableSessionBindingElement(); |
|
331 |
reliableSession.Ordered = true; |
|
332 |
reliableSession.MaxRetryCount = 3; |
|
333 |
basicHttpBinding.CreateBindingElements().Add(reliableSession); |
|
330 |
//System.ServiceModel.Channels.ReliableSessionBindingElement reliableSession = new System.ServiceModel.Channels.ReliableSessionBindingElement();
|
|
331 |
//reliableSession.Ordered = true;
|
|
332 |
//reliableSession.MaxRetryCount = 3;
|
|
333 |
//basicHttpBinding.CreateBindingElements().Add(reliableSession);
|
|
334 | 334 | |
335 |
_binding = basicHttpBinding; |
|
335 |
//_binding = basicHttpBinding;
|
|
336 | 336 |
#endregion |
337 | 337 |
#endif |
338 | 338 | |
... | ... | |
366 | 366 |
#if BASIC_BINDING |
367 | 367 |
_EndPoint = new EndpointAddress(string.Format("{0}/ServiceDeepView.svc", BaseAddress)); |
368 | 368 |
#elif CUSTOM_BINDING |
369 |
_EndPoint = new EndpointAddress(string.Format("{0}/ServiceDeepView.svc/gzip", BaseAddress));
|
|
369 |
_EndPoint = new EndpointAddress(string.Format("{0}/ServiceDeepView.svc/GZIP", BaseAddress));
|
|
370 | 370 |
#else |
371 | 371 |
_EndPoint = new EndpointAddress(string.Format("{0}/ServiceDeepView.svc", BaseAddress)); |
372 | 372 |
#endif |
KCOM/Common/Converter/NullToCollapsedConverter.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 | ||
6 |
namespace KCOM.Common.Converter |
|
7 |
{ |
|
8 |
using System; |
|
9 |
using System.Windows.Data; |
|
10 |
using System.Windows.Media; |
|
11 |
using System.Globalization; |
|
12 |
using System.Windows; |
|
13 |
/// <summary> |
|
14 |
/// A Value converter |
|
15 |
/// </summary> |
|
16 |
public class NullToCollapsedConverter : IValueConverter |
|
17 |
{ |
|
18 |
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
|
19 |
{ |
|
20 |
Visibility result = Visibility.Collapsed; |
|
21 | ||
22 |
if (value != null) |
|
23 |
{ |
|
24 |
result = string.IsNullOrWhiteSpace(value?.ToString()) ? Visibility.Collapsed : Visibility.Visible; |
|
25 |
} |
|
26 | ||
27 |
return result; |
|
28 |
} |
|
29 | ||
30 | ||
31 | ||
32 |
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
|
33 |
{ |
|
34 |
throw new NotSupportedException(); |
|
35 |
} |
|
36 |
} |
|
37 |
} |
KCOM/Connected Services/ServiceDeepView/Reference.cs | ||
---|---|---|
15 | 15 |
|
16 | 16 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
17 | 17 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
18 |
[System.Runtime.Serialization.DataContractAttribute(Name="StructuralObject", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses", IsReference=true)] |
|
19 |
[System.SerializableAttribute()] |
|
20 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityObject))] |
|
21 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCINFO))] |
|
22 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCPAGE))] |
|
23 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO))] |
|
24 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO_VERSION))] |
|
25 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA))] |
|
26 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))] |
|
27 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))] |
|
28 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))] |
|
29 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))] |
|
30 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))] |
|
31 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))] |
|
32 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))] |
|
33 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))] |
|
34 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FINAL_PDF))] |
|
35 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.PROPERTIES))] |
|
36 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))] |
|
37 |
public partial class StructuralObject : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
|
38 |
|
|
39 |
[System.NonSerializedAttribute()] |
|
40 |
private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
|
41 |
|
|
42 |
[global::System.ComponentModel.BrowsableAttribute(false)] |
|
43 |
public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
|
44 |
get { |
|
45 |
return this.extensionDataField; |
|
46 |
} |
|
47 |
set { |
|
48 |
this.extensionDataField = value; |
|
49 |
} |
|
50 |
} |
|
51 |
|
|
52 |
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
|
53 |
|
|
54 |
protected void RaisePropertyChanged(string propertyName) { |
|
55 |
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
|
56 |
if ((propertyChanged != null)) { |
|
57 |
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
|
58 |
} |
|
59 |
} |
|
60 |
} |
|
61 |
|
|
62 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
63 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
64 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityObject", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses", IsReference=true)] |
|
65 |
[System.SerializableAttribute()] |
|
66 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCINFO))] |
|
67 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCPAGE))] |
|
68 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO))] |
|
69 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO_VERSION))] |
|
70 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA))] |
|
71 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))] |
|
72 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))] |
|
73 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))] |
|
74 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))] |
|
75 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))] |
|
76 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))] |
|
77 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))] |
|
78 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))] |
|
79 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FINAL_PDF))] |
|
80 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.PROPERTIES))] |
|
81 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))] |
|
82 |
public partial class EntityObject : KCOM.ServiceDeepView.StructuralObject { |
|
83 |
|
|
84 |
[System.Runtime.Serialization.OptionalFieldAttribute()] |
|
85 |
private KCOM.ServiceDeepView.EntityKey EntityKeyField; |
|
86 |
|
|
87 |
[System.Runtime.Serialization.DataMemberAttribute()] |
|
88 |
public KCOM.ServiceDeepView.EntityKey EntityKey { |
|
89 |
get { |
|
90 |
return this.EntityKeyField; |
|
91 |
} |
|
92 |
set { |
|
93 |
if ((object.ReferenceEquals(this.EntityKeyField, value) != true)) { |
|
94 |
this.EntityKeyField = value; |
|
95 |
this.RaisePropertyChanged("EntityKey"); |
|
96 |
} |
|
97 |
} |
|
98 |
} |
|
99 |
} |
|
100 |
|
|
101 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
102 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
103 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityKey", Namespace="http://schemas.datacontract.org/2004/07/System.Data", IsReference=true)] |
|
104 |
[System.SerializableAttribute()] |
|
105 |
public partial class EntityKey : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
|
106 |
|
|
107 |
[System.NonSerializedAttribute()] |
|
108 |
private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
|
109 |
|
|
110 |
[System.Runtime.Serialization.OptionalFieldAttribute()] |
|
111 |
private string EntityContainerNameField; |
|
112 |
|
|
113 |
[System.Runtime.Serialization.OptionalFieldAttribute()] |
|
114 |
private System.Collections.Generic.List<KCOM.ServiceDeepView.EntityKeyMember> EntityKeyValuesField; |
|
115 |
|
|
116 |
[System.Runtime.Serialization.OptionalFieldAttribute()] |
|
117 |
private string EntitySetNameField; |
|
118 |
|
|
119 |
[global::System.ComponentModel.BrowsableAttribute(false)] |
|
120 |
public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
|
121 |
get { |
|
122 |
return this.extensionDataField; |
|
123 |
} |
|
124 |
set { |
|
125 |
this.extensionDataField = value; |
|
126 |
} |
|
127 |
} |
|
128 |
|
|
129 |
[System.Runtime.Serialization.DataMemberAttribute()] |
|
130 |
public string EntityContainerName { |
|
131 |
get { |
|
132 |
return this.EntityContainerNameField; |
|
133 |
} |
|
134 |
set { |
|
135 |
if ((object.ReferenceEquals(this.EntityContainerNameField, value) != true)) { |
|
136 |
this.EntityContainerNameField = value; |
|
137 |
this.RaisePropertyChanged("EntityContainerName"); |
|
138 |
} |
|
139 |
} |
|
140 |
} |
|
141 |
|
|
142 |
[System.Runtime.Serialization.DataMemberAttribute()] |
|
143 |
public System.Collections.Generic.List<KCOM.ServiceDeepView.EntityKeyMember> EntityKeyValues { |
|
144 |
get { |
|
145 |
return this.EntityKeyValuesField; |
|
146 |
} |
|
147 |
set { |
|
148 |
if ((object.ReferenceEquals(this.EntityKeyValuesField, value) != true)) { |
|
149 |
this.EntityKeyValuesField = value; |
|
150 |
this.RaisePropertyChanged("EntityKeyValues"); |
|
151 |
} |
|
152 |
} |
|
153 |
} |
|
154 |
|
|
155 |
[System.Runtime.Serialization.DataMemberAttribute()] |
|
156 |
public string EntitySetName { |
|
157 |
get { |
|
158 |
return this.EntitySetNameField; |
|
159 |
} |
|
160 |
set { |
|
161 |
if ((object.ReferenceEquals(this.EntitySetNameField, value) != true)) { |
|
162 |
this.EntitySetNameField = value; |
|
163 |
this.RaisePropertyChanged("EntitySetName"); |
|
164 |
} |
|
165 |
} |
|
166 |
} |
|
167 |
|
|
168 |
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
|
169 |
|
|
170 |
protected void RaisePropertyChanged(string propertyName) { |
|
171 |
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
|
172 |
if ((propertyChanged != null)) { |
|
173 |
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
|
174 |
} |
|
175 |
} |
|
176 |
} |
|
177 |
|
|
178 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
179 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
180 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityKeyMember", Namespace="http://schemas.datacontract.org/2004/07/System.Data")] |
|
181 |
[System.SerializableAttribute()] |
|
182 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<System.Windows.Rect>))] |
|
183 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Windows.Rect))] |
|
184 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Windows.Size))] |
|
185 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC>))] |
|
186 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))] |
|
187 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCINFO))] |
|
188 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE>))] |
|
189 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCPAGE))] |
|
190 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_INFO>))] |
|
191 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO))] |
|
192 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_INFO_VERSION>))] |
|
193 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO_VERSION))] |
|
194 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>))] |
|
195 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA))] |
|
196 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))] |
|
197 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))] |
|
198 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SIGN_INFO>))] |
|
199 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))] |
|
200 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER>))] |
|
201 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))] |
|
202 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))] |
|
203 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))] |
|
204 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))] |
|
205 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST>))] |
|
206 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY>))] |
|
207 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE>))] |
|
208 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC>))] |
|
209 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM>))] |
|
210 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))] |
|
211 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.TALK>))] |
|
212 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FINAL_PDF))] |
|
213 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF>))] |
|
214 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.PROPERTIES))] |
|
215 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES>))] |
|
216 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.FinalPDFResult))] |
|
217 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.FinalStatus))] |
|
218 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityKey))] |
|
219 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOM.ServiceDeepView.EntityKeyMember>))] |
|
220 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.KCOM_SystemInfo))] |
|
221 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.KCOM_BasicParam))] |
|
222 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<IKCOM.VPRevision>))] |
|
223 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.VPRevision))] |
|
224 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<IKCOM.MarkupInfoItem>))] |
|
225 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.MarkupInfoItem))] |
|
226 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<IKCOM.MarkupItem>))] |
|
227 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.MarkupItem))] |
|
228 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.FAVORITE_FLAG))] |
|
229 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityObject))] |
|
230 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.StructuralObject))] |
|
231 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfDOCINFOitJtO6kG))] |
|
232 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReference))] |
|
233 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.RelatedEnd))] |
|
234 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG))] |
|
235 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFOitJtO6kG))] |
|
236 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMEMBERitJtO6kG))] |
|
237 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<string>))] |
|
238 |
public partial class EntityKeyMember : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
|
239 |
|
|
240 |
[System.NonSerializedAttribute()] |
|
241 |
private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
|
242 |
|
|
243 |
[System.Runtime.Serialization.OptionalFieldAttribute()] |
|
244 |
private string KeyField; |
|
245 |
|
|
246 |
[System.Runtime.Serialization.OptionalFieldAttribute()] |
|
247 |
private object ValueField; |
|
248 |
|
|
249 |
[global::System.ComponentModel.BrowsableAttribute(false)] |
|
250 |
public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
|
251 |
get { |
|
252 |
return this.extensionDataField; |
|
253 |
} |
|
254 |
set { |
|
255 |
this.extensionDataField = value; |
|
256 |
} |
|
257 |
} |
|
258 |
|
|
259 |
[System.Runtime.Serialization.DataMemberAttribute()] |
|
260 |
public string Key { |
|
261 |
get { |
|
262 |
return this.KeyField; |
|
263 |
} |
|
264 |
set { |
|
265 |
if ((object.ReferenceEquals(this.KeyField, value) != true)) { |
|
266 |
this.KeyField = value; |
|
267 |
this.RaisePropertyChanged("Key"); |
|
268 |
} |
|
269 |
} |
|
270 |
} |
|
271 |
|
|
272 |
[System.Runtime.Serialization.DataMemberAttribute()] |
|
273 |
public object Value { |
|
274 |
get { |
|
275 |
return this.ValueField; |
|
276 |
} |
|
277 |
set { |
|
278 |
if ((object.ReferenceEquals(this.ValueField, value) != true)) { |
|
279 |
this.ValueField = value; |
|
280 |
this.RaisePropertyChanged("Value"); |
|
281 |
} |
|
282 |
} |
|
283 |
} |
|
284 |
|
|
285 |
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
|
286 |
|
|
287 |
protected void RaisePropertyChanged(string propertyName) { |
|
288 |
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
|
289 |
if ((propertyChanged != null)) { |
|
290 |
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
|
291 |
} |
|
292 |
} |
|
293 |
} |
|
294 |
|
|
295 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
296 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
297 | 18 |
[System.Runtime.Serialization.DataContractAttribute(Name="FinalPDFResult", Namespace="http://schemas.datacontract.org/2004/07/IFinalPDF")] |
298 | 19 |
[System.SerializableAttribute()] |
299 | 20 |
public partial struct FinalPDFResult : System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
... | ... | |
418 | 139 |
Error = 5, |
419 | 140 |
} |
420 | 141 |
|
421 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
422 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
423 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfDOCINFOitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")] |
|
424 |
[System.SerializableAttribute()] |
|
425 |
public partial class EntityReferenceOfDOCINFOitJtO6kG : KCOM.ServiceDeepView.EntityReference { |
|
426 |
} |
|
427 |
|
|
428 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
429 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
430 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityReference", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")] |
|
431 |
[System.SerializableAttribute()] |
|
432 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG))] |
|
433 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFOitJtO6kG))] |
|
434 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMEMBERitJtO6kG))] |
|
435 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfDOCINFOitJtO6kG))] |
|
436 |
public partial class EntityReference : KCOM.ServiceDeepView.RelatedEnd { |
|
437 |
|
|
438 |
[System.Runtime.Serialization.OptionalFieldAttribute()] |
|
439 |
private KCOM.ServiceDeepView.EntityKey EntityKeyField; |
|
440 |
|
|
441 |
[System.Runtime.Serialization.DataMemberAttribute()] |
|
442 |
public KCOM.ServiceDeepView.EntityKey EntityKey { |
|
443 |
get { |
|
444 |
return this.EntityKeyField; |
|
445 |
} |
|
446 |
set { |
|
447 |
if ((object.ReferenceEquals(this.EntityKeyField, value) != true)) { |
|
448 |
this.EntityKeyField = value; |
|
449 |
this.RaisePropertyChanged("EntityKey"); |
|
450 |
} |
|
451 |
} |
|
452 |
} |
|
453 |
} |
|
454 |
|
|
455 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
456 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
457 |
[System.Runtime.Serialization.DataContractAttribute(Name="RelatedEnd", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")] |
|
458 |
[System.SerializableAttribute()] |
|
459 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReference))] |
|
460 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG))] |
|
461 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFOitJtO6kG))] |
|
462 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMEMBERitJtO6kG))] |
|
463 |
[System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfDOCINFOitJtO6kG))] |
|
464 |
public partial class RelatedEnd : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
|
465 |
|
|
466 |
[System.NonSerializedAttribute()] |
|
467 |
private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
|
468 |
|
|
469 |
[global::System.ComponentModel.BrowsableAttribute(false)] |
|
470 |
public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
|
471 |
get { |
|
472 |
return this.extensionDataField; |
|
473 |
} |
|
474 |
set { |
|
475 |
this.extensionDataField = value; |
|
476 |
} |
|
477 |
} |
|
478 |
|
|
479 |
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
|
480 |
|
|
481 |
protected void RaisePropertyChanged(string propertyName) { |
|
482 |
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
|
483 |
if ((propertyChanged != null)) { |
|
484 |
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
|
485 |
} |
|
486 |
} |
|
487 |
} |
|
488 |
|
|
489 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
490 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
491 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")] |
|
492 |
[System.SerializableAttribute()] |
|
493 |
public partial class EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG : KCOM.ServiceDeepView.EntityReference { |
|
494 |
} |
|
495 |
|
|
496 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
497 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
498 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfMARKUP_INFOitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")] |
|
499 |
[System.SerializableAttribute()] |
|
500 |
public partial class EntityReferenceOfMARKUP_INFOitJtO6kG : KCOM.ServiceDeepView.EntityReference { |
|
501 |
} |
|
502 |
|
|
503 |
[System.Diagnostics.DebuggerStepThroughAttribute()] |
|
504 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
|
505 |
[System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfMEMBERitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")] |
|
506 |
[System.SerializableAttribute()] |
|
507 |
public partial class EntityReferenceOfMEMBERitJtO6kG : KCOM.ServiceDeepView.EntityReference { |
|
508 |
} |
|
509 |
|
|
510 | 142 |
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] |
511 | 143 |
[System.ServiceModel.ServiceContractAttribute(Namespace="", ConfigurationName="ServiceDeepView.ServiceDeepView")] |
512 | 144 |
public interface ServiceDeepView { |
KCOM/Connected Services/ServiceDeepView/Reference.svcmap | ||
---|---|---|
15 | 15 |
<GenerateSerializableTypes>true</GenerateSerializableTypes> |
16 | 16 |
<Serializer>Auto</Serializer> |
17 | 17 |
<UseSerializerForFaults>true</UseSerializerForFaults> |
18 |
<ReferenceAllAssemblies>false</ReferenceAllAssemblies> |
|
19 |
<ReferencedAssemblies> |
|
20 |
<ReferencedAssembly AssemblyName="IKCOM" /> |
|
21 |
<ReferencedAssembly AssemblyName="KCOMDataModel" /> |
|
22 |
<ReferencedAssembly AssemblyName="WindowsBase" /> |
|
23 |
</ReferencedAssemblies> |
|
18 |
<ReferenceAllAssemblies>true</ReferenceAllAssemblies> |
|
19 |
<ReferencedAssemblies /> |
|
24 | 20 |
<ReferencedDataContractTypes /> |
25 | 21 |
<ServiceContractMappings /> |
26 | 22 |
</ClientOptions> |
... | ... | |
28 | 24 |
<MetadataSource Address="http://localhost:44301/ServiceDeepView.svc" Protocol="http" SourceId="1" /> |
29 | 25 |
</MetadataSources> |
30 | 26 |
<Metadata> |
31 |
<MetadataFile FileName="ServiceDeepView99.xsd" MetadataType="Schema" ID="b5f38220-9276-45e5-9602-e9ec29e275b8" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd6" /> |
|
27 |
<MetadataFile FileName="ServiceDeepView915.xsd" MetadataType="Schema" ID="e3f931de-1d85-4cb5-baf5-a0c1824ad9cb" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd1" /> |
|
28 |
<MetadataFile FileName="ServiceDeepView23.wsdl" MetadataType="Wsdl" ID="7053a962-2a37-4601-9409-552bc96378ea" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?wsdl" /> |
|
29 |
<MetadataFile FileName="ServiceDeepView912.xsd" MetadataType="Schema" ID="86eadba7-5461-4d0e-847a-fd16c4173d2f" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd5" /> |
|
32 | 30 |
<MetadataFile FileName="ServiceDeepView22.wsdl" MetadataType="Wsdl" ID="eb5e3330-9ba8-43c8-b109-0c87e9171419" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?wsdl=wsdl0" /> |
33 | 31 |
<MetadataFile FileName="ServiceDeepView910.xsd" MetadataType="Schema" ID="72ebc64a-3ccf-4680-aa62-7b68af41cc09" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd3" /> |
34 |
<MetadataFile FileName="ServiceDeepView911.xsd" MetadataType="Schema" ID="dc6e1efc-8f26-4d3b-b8f1-3097835e466a" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd7" /> |
|
35 |
<MetadataFile FileName="ServiceDeepView912.xsd" MetadataType="Schema" ID="86eadba7-5461-4d0e-847a-fd16c4173d2f" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd5" /> |
|
36 |
<MetadataFile FileName="ServiceDeepView913.xsd" MetadataType="Schema" ID="c275b2db-78ff-4aed-a5f0-feab02090701" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd2" /> |
|
37 |
<MetadataFile FileName="ServiceDeepView914.xsd" MetadataType="Schema" ID="5ae9115d-daaf-41a5-aa22-9ee441af0259" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd4" /> |
|
38 |
<MetadataFile FileName="ServiceDeepView11.disco" MetadataType="Disco" ID="52ff5518-00c8-42af-939e-487177854f11" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?disco" /> |
|
39 |
<MetadataFile FileName="ServiceDeepView23.wsdl" MetadataType="Wsdl" ID="7053a962-2a37-4601-9409-552bc96378ea" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?wsdl" /> |
|
40 |
<MetadataFile FileName="ServiceDeepView915.xsd" MetadataType="Schema" ID="e3f931de-1d85-4cb5-baf5-a0c1824ad9cb" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd1" /> |
|
41 | 32 |
<MetadataFile FileName="ServiceDeepView916.xsd" MetadataType="Schema" ID="ba4b6b3c-072c-4151-b1ce-54d8250c6229" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd8" /> |
33 |
<MetadataFile FileName="ServiceDeepView99.xsd" MetadataType="Schema" ID="b5f38220-9276-45e5-9602-e9ec29e275b8" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd6" /> |
|
34 |
<MetadataFile FileName="ServiceDeepView11.disco" MetadataType="Disco" ID="52ff5518-00c8-42af-939e-487177854f11" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?disco" /> |
|
35 |
<MetadataFile FileName="ServiceDeepView914.xsd" MetadataType="Schema" ID="5ae9115d-daaf-41a5-aa22-9ee441af0259" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd4" /> |
|
36 |
<MetadataFile FileName="ServiceDeepView913.xsd" MetadataType="Schema" ID="c275b2db-78ff-4aed-a5f0-feab02090701" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd2" /> |
|
37 |
<MetadataFile FileName="ServiceDeepView911.xsd" MetadataType="Schema" ID="dc6e1efc-8f26-4d3b-b8f1-3097835e466a" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd7" /> |
|
42 | 38 |
<MetadataFile FileName="ServiceDeepView917.xsd" MetadataType="Schema" ID="82d3d922-73aa-4e11-a379-5cbfd63d83e8" SourceId="1" SourceUrl="http://localhost:44301/ServiceDeepView.svc?xsd=xsd0" /> |
43 | 39 |
</Metadata> |
44 | 40 |
<Extensions> |
KCOM/Connected Services/ServiceDeepView/ServiceDeepView22.wsdl | ||
---|---|---|
5 | 5 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd0" /> |
6 | 6 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> |
7 | 7 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/IKCOM" /> |
8 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd3" namespace="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" />
|
|
9 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd4" namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" />
|
|
10 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd5" namespace="http://schemas.datacontract.org/2004/07/System.Data" /> |
|
11 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd6" namespace="http://schemas.datacontract.org/2004/07/System.Windows" />
|
|
12 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd7" namespace="http://schemas.datacontract.org/2004/07/IFinalPDF" />
|
|
13 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd8" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
|
8 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
|
9 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd4" namespace="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" />
|
|
10 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd5" namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" />
|
|
11 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd6" namespace="http://schemas.datacontract.org/2004/07/System.Data" />
|
|
12 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd7" namespace="http://schemas.datacontract.org/2004/07/System.Windows" />
|
|
13 |
<xsd:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd8" namespace="http://schemas.datacontract.org/2004/07/IFinalPDF" />
|
|
14 | 14 |
</xsd:schema> |
15 | 15 |
</wsdl:types> |
16 | 16 |
<wsdl:message name="ServiceDeepView_GetVersionData_InputMessage"> |
KCOM/Connected Services/ServiceDeepView/ServiceDeepView23.wsdl | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
<wsdl:definitions xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:tns="http://tempuri.org/" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="ServiceDeepView" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> |
3 |
<wsp:Policy wsu:Id="MarkusAPIgzip_policy"> |
|
4 |
<wsp:ExactlyOne> |
|
5 |
<wsp:All> |
|
6 |
<wsaw:UsingAddressing /> |
|
7 |
</wsp:All> |
|
8 |
</wsp:ExactlyOne> |
|
9 |
</wsp:Policy> |
|
3 | 10 |
<wsdl:import namespace="" location="http://localhost:44301/ServiceDeepView.svc?wsdl=wsdl0" /> |
4 | 11 |
<wsdl:types /> |
5 | 12 |
<wsdl:binding name="DeepViewPoint" type="ServiceDeepView"> |
... | ... | |
707 | 714 |
</wsdl:output> |
708 | 715 |
</wsdl:operation> |
709 | 716 |
</wsdl:binding> |
717 |
<wsdl:binding name="MarkusAPIgzip" type="ServiceDeepView"> |
|
718 |
<wsp:PolicyReference URI="#MarkusAPIgzip_policy" /> |
|
719 |
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
|
720 |
<wsdl:operation name="GetVersionData"> |
|
721 |
<soap12:operation soapAction="urn:ServiceDeepView/GetVersionData" style="document" /> |
|
722 |
<wsdl:input> |
|
723 |
<soap12:body use="literal" /> |
|
724 |
</wsdl:input> |
|
725 |
<wsdl:output> |
|
726 |
<soap12:body use="literal" /> |
|
727 |
</wsdl:output> |
|
728 |
</wsdl:operation> |
|
729 |
<wsdl:operation name="GetSystemData"> |
|
730 |
<soap12:operation soapAction="urn:ServiceDeepView/GetSystemData" style="document" /> |
|
731 |
<wsdl:input> |
|
732 |
<soap12:body use="literal" /> |
|
733 |
</wsdl:input> |
|
734 |
<wsdl:output> |
|
735 |
<soap12:body use="literal" /> |
|
736 |
</wsdl:output> |
|
737 |
</wsdl:operation> |
|
738 |
<wsdl:operation name="GetFavoriteVP"> |
|
739 |
<soap12:operation soapAction="urn:ServiceDeepView/GetFavoriteVP" style="document" /> |
|
740 |
<wsdl:input> |
|
741 |
<soap12:body use="literal" /> |
|
742 |
</wsdl:input> |
|
743 |
<wsdl:output> |
|
744 |
<soap12:body use="literal" /> |
|
745 |
</wsdl:output> |
|
746 |
</wsdl:operation> |
|
747 |
<wsdl:operation name="EditFavoriteVP"> |
|
748 |
<soap12:operation soapAction="urn:ServiceDeepView/EditFavoriteVP" style="document" /> |
|
749 |
<wsdl:input> |
|
750 |
<soap12:body use="literal" /> |
|
751 |
</wsdl:input> |
|
752 |
<wsdl:output> |
|
753 |
<soap12:body use="literal" /> |
|
754 |
</wsdl:output> |
|
755 |
</wsdl:operation> |
|
756 |
<wsdl:operation name="DelFavoriteVP"> |
|
757 |
<soap12:operation soapAction="urn:ServiceDeepView/DelFavoriteVP" style="document" /> |
|
758 |
<wsdl:input> |
|
759 |
<soap12:body use="literal" /> |
|
760 |
</wsdl:input> |
|
761 |
<wsdl:output> |
|
762 |
<soap12:body use="literal" /> |
|
763 |
</wsdl:output> |
|
764 |
</wsdl:operation> |
|
765 |
<wsdl:operation name="GetCompareRect"> |
|
766 |
<soap12:operation soapAction="urn:ServiceDeepView/GetCompareRect" style="document" /> |
|
767 |
<wsdl:input> |
|
768 |
<soap12:body use="literal" /> |
|
769 |
</wsdl:input> |
|
770 |
<wsdl:output> |
|
771 |
<soap12:body use="literal" /> |
|
772 |
</wsdl:output> |
|
773 |
</wsdl:operation> |
|
774 |
<wsdl:operation name="GetComparefixSize"> |
|
775 |
<soap12:operation soapAction="urn:ServiceDeepView/GetComparefixSize" style="document" /> |
|
776 |
<wsdl:input> |
|
777 |
<soap12:body use="literal" /> |
|
778 |
</wsdl:input> |
|
779 |
<wsdl:output> |
|
780 |
<soap12:body use="literal" /> |
|
781 |
</wsdl:output> |
|
782 |
</wsdl:operation> |
|
783 |
<wsdl:operation name="SetFinalPDF"> |
|
784 |
<soap12:operation soapAction="urn:ServiceDeepView/SetFinalPDF" style="document" /> |
|
785 |
<wsdl:input> |
|
786 |
<soap12:body use="literal" /> |
|
787 |
</wsdl:input> |
|
788 |
<wsdl:output> |
|
789 |
<soap12:body use="literal" /> |
|
790 |
</wsdl:output> |
|
791 |
</wsdl:operation> |
|
792 |
<wsdl:operation name="GetConversionState"> |
|
793 |
<soap12:operation soapAction="urn:ServiceDeepView/GetConversionState" style="document" /> |
|
794 |
<wsdl:input> |
|
795 |
<soap12:body use="literal" /> |
|
796 |
</wsdl:input> |
|
797 |
<wsdl:output> |
|
798 |
<soap12:body use="literal" /> |
|
799 |
</wsdl:output> |
|
800 |
</wsdl:operation> |
|
801 |
<wsdl:operation name="GetVPRevisionHistory"> |
|
802 |
<soap12:operation soapAction="urn:ServiceDeepView/GetVPRevisionHistory" style="document" /> |
|
803 |
<wsdl:input> |
|
804 |
<soap12:body use="literal" /> |
|
805 |
</wsdl:input> |
|
806 |
<wsdl:output> |
|
807 |
<soap12:body use="literal" /> |
|
808 |
</wsdl:output> |
|
809 |
</wsdl:operation> |
|
810 |
<wsdl:operation name="GetVPRevisionFirstOrDefault"> |
|
811 |
<soap12:operation soapAction="urn:ServiceDeepView/GetVPRevisionFirstOrDefault" style="document" /> |
|
812 |
<wsdl:input> |
|
813 |
<soap12:body use="literal" /> |
|
814 |
</wsdl:input> |
|
815 |
<wsdl:output> |
|
816 |
<soap12:body use="literal" /> |
|
817 |
</wsdl:output> |
|
818 |
</wsdl:operation> |
|
819 |
<wsdl:operation name="GetDocInfo"> |
|
820 |
<soap12:operation soapAction="urn:ServiceDeepView/GetDocInfo" style="document" /> |
|
821 |
<wsdl:input> |
|
822 |
<soap12:body use="literal" /> |
|
823 |
</wsdl:input> |
|
824 |
<wsdl:output> |
|
825 |
<soap12:body use="literal" /> |
|
826 |
</wsdl:output> |
|
827 |
</wsdl:operation> |
|
828 |
<wsdl:operation name="GetCheckSystemAdmin"> |
|
829 |
<soap12:operation soapAction="urn:ServiceDeepView/GetCheckSystemAdmin" style="document" /> |
|
830 |
<wsdl:input> |
|
831 |
<soap12:body use="literal" /> |
|
832 |
</wsdl:input> |
|
833 |
<wsdl:output> |
|
834 |
<soap12:body use="literal" /> |
|
835 |
</wsdl:output> |
|
836 |
</wsdl:operation> |
|
837 |
<wsdl:operation name="GetDocumentItemInfo"> |
|
838 |
<soap12:operation soapAction="urn:ServiceDeepView/GetDocumentItemInfo" style="document" /> |
|
839 |
<wsdl:input> |
|
840 |
<soap12:body use="literal" /> |
|
841 |
</wsdl:input> |
|
842 |
<wsdl:output> |
|
843 |
<soap12:body use="literal" /> |
|
844 |
</wsdl:output> |
|
845 |
</wsdl:operation> |
|
846 |
<wsdl:operation name="GetDocItemID"> |
|
847 |
<soap12:operation soapAction="urn:ServiceDeepView/GetDocItemID" style="document" /> |
|
848 |
<wsdl:input> |
|
849 |
<soap12:body use="literal" /> |
|
850 |
</wsdl:input> |
|
851 |
<wsdl:output> |
|
852 |
<soap12:body use="literal" /> |
|
853 |
</wsdl:output> |
|
854 |
</wsdl:operation> |
|
855 |
<wsdl:operation name="GetMarkupInfoItems"> |
|
856 |
<soap12:operation soapAction="urn:ServiceDeepView/GetMarkupInfoItems" style="document" /> |
|
857 |
<wsdl:input> |
|
858 |
<soap12:body use="literal" /> |
|
859 |
</wsdl:input> |
|
860 |
<wsdl:output> |
|
861 |
<soap12:body use="literal" /> |
|
862 |
</wsdl:output> |
|
863 |
</wsdl:operation> |
|
864 |
<wsdl:operation name="GetSyncMarkupInfoItems"> |
|
865 |
<soap12:operation soapAction="urn:ServiceDeepView/GetSyncMarkupInfoItems" style="document" /> |
|
866 |
<wsdl:input> |
|
867 |
<soap12:body use="literal" /> |
|
868 |
</wsdl:input> |
|
869 |
<wsdl:output> |
|
870 |
<soap12:body use="literal" /> |
|
871 |
</wsdl:output> |
|
872 |
</wsdl:operation> |
|
873 |
<wsdl:operation name="GetUserData"> |
|
874 |
<soap12:operation soapAction="urn:ServiceDeepView/GetUserData" style="document" /> |
|
875 |
<wsdl:input> |
|
876 |
<soap12:body use="literal" /> |
|
877 |
</wsdl:input> |
|
878 |
<wsdl:output> |
|
879 |
<soap12:body use="literal" /> |
|
880 |
</wsdl:output> |
|
881 |
</wsdl:operation> |
|
882 |
<wsdl:operation name="GetDeptData"> |
|
883 |
<soap12:operation soapAction="urn:ServiceDeepView/GetDeptData" style="document" /> |
|
884 |
<wsdl:input> |
|
885 |
<soap12:body use="literal" /> |
|
886 |
</wsdl:input> |
|
887 |
<wsdl:output> |
|
888 |
<soap12:body use="literal" /> |
|
889 |
</wsdl:output> |
|
890 |
</wsdl:operation> |
|
891 |
<wsdl:operation name="DeleteMarkup"> |
|
892 |
<soap12:operation soapAction="urn:ServiceDeepView/DeleteMarkup" style="document" /> |
|
893 |
<wsdl:input> |
|
894 |
<soap12:body use="literal" /> |
|
895 |
</wsdl:input> |
|
896 |
<wsdl:output> |
|
897 |
<soap12:body use="literal" /> |
|
898 |
</wsdl:output> |
|
899 |
</wsdl:operation> |
|
900 |
<wsdl:operation name="SetFavoriteVP"> |
|
901 |
<soap12:operation soapAction="urn:ServiceDeepView/SetFavoriteVP" style="document" /> |
|
902 |
<wsdl:input> |
|
903 |
<soap12:body use="literal" /> |
|
904 |
</wsdl:input> |
|
905 |
<wsdl:output> |
|
906 |
<soap12:body use="literal" /> |
|
907 |
</wsdl:output> |
|
908 |
</wsdl:operation> |
|
909 |
<wsdl:operation name="SaveMarkupData"> |
|
910 |
<soap12:operation soapAction="urn:ServiceDeepView/SaveMarkupData" style="document" /> |
|
911 |
<wsdl:input> |
|
912 |
<soap12:body use="literal" /> |
|
913 |
</wsdl:input> |
|
914 |
<wsdl:output> |
|
915 |
<soap12:body use="literal" /> |
|
916 |
</wsdl:output> |
|
917 |
</wsdl:operation> |
|
918 |
<wsdl:operation name="SavePageMarkupData"> |
|
919 |
<soap12:operation soapAction="urn:ServiceDeepView/SavePageMarkupData" style="document" /> |
|
920 |
<wsdl:input> |
|
921 |
<soap12:body use="literal" /> |
|
922 |
</wsdl:input> |
|
923 |
<wsdl:output> |
|
924 |
<soap12:body use="literal" /> |
|
925 |
</wsdl:output> |
|
926 |
</wsdl:operation> |
|
927 |
<wsdl:operation name="UpdateMarkupData"> |
|
928 |
<soap12:operation soapAction="urn:ServiceDeepView/UpdateMarkupData" style="document" /> |
|
929 |
<wsdl:input> |
|
930 |
<soap12:body use="literal" /> |
|
931 |
</wsdl:input> |
|
932 |
<wsdl:output> |
|
933 |
<soap12:body use="literal" /> |
|
934 |
</wsdl:output> |
|
935 |
</wsdl:operation> |
|
936 |
<wsdl:operation name="SaveSymbol"> |
|
937 |
<soap12:operation soapAction="urn:ServiceDeepView/SaveSymbol" style="document" /> |
|
938 |
<wsdl:input> |
|
939 |
<soap12:body use="literal" /> |
|
940 |
</wsdl:input> |
|
941 |
<wsdl:output> |
|
942 |
<soap12:body use="literal" /> |
|
943 |
</wsdl:output> |
|
944 |
</wsdl:operation> |
|
945 |
<wsdl:operation name="AddPublicSymbol"> |
|
946 |
<soap12:operation soapAction="urn:ServiceDeepView/AddPublicSymbol" style="document" /> |
|
947 |
<wsdl:input> |
|
948 |
<soap12:body use="literal" /> |
|
949 |
</wsdl:input> |
|
950 |
<wsdl:output> |
|
951 |
<soap12:body use="literal" /> |
|
952 |
</wsdl:output> |
|
953 |
</wsdl:operation> |
|
954 |
<wsdl:operation name="DeleteSymbol"> |
|
955 |
<soap12:operation soapAction="urn:ServiceDeepView/DeleteSymbol" style="document" /> |
|
956 |
<wsdl:input> |
|
957 |
<soap12:body use="literal" /> |
|
958 |
</wsdl:input> |
|
959 |
<wsdl:output> |
|
960 |
<soap12:body use="literal" /> |
|
961 |
</wsdl:output> |
|
962 |
</wsdl:operation> |
|
963 |
<wsdl:operation name="RenameSymbol"> |
|
964 |
<soap12:operation soapAction="urn:ServiceDeepView/RenameSymbol" style="document" /> |
|
965 |
<wsdl:input> |
|
966 |
<soap12:body use="literal" /> |
|
967 |
</wsdl:input> |
|
968 |
<wsdl:output> |
|
969 |
<soap12:body use="literal" /> |
|
970 |
</wsdl:output> |
|
971 |
</wsdl:operation> |
|
972 |
<wsdl:operation name="AddCheckListHistory"> |
|
973 |
<soap12:operation soapAction="urn:ServiceDeepView/AddCheckListHistory" style="document" /> |
|
974 |
<wsdl:input> |
|
975 |
<soap12:body use="literal" /> |
|
976 |
</wsdl:input> |
|
977 |
<wsdl:output> |
|
978 |
<soap12:body use="literal" /> |
|
979 |
</wsdl:output> |
|
980 |
</wsdl:operation> |
|
981 |
<wsdl:operation name="SaveCheckListHistory"> |
|
982 |
<soap12:operation soapAction="urn:ServiceDeepView/SaveCheckListHistory" style="document" /> |
|
983 |
<wsdl:input> |
|
984 |
<soap12:body use="literal" /> |
|
985 |
</wsdl:input> |
|
986 |
<wsdl:output> |
|
987 |
<soap12:body use="literal" /> |
|
988 |
</wsdl:output> |
|
989 |
</wsdl:operation> |
|
990 |
<wsdl:operation name="SaveCheckList"> |
|
991 |
<soap12:operation soapAction="urn:ServiceDeepView/SaveCheckList" style="document" /> |
|
992 |
<wsdl:input> |
|
993 |
<soap12:body use="literal" /> |
|
994 |
</wsdl:input> |
|
995 |
<wsdl:output> |
|
996 |
<soap12:body use="literal" /> |
|
997 |
</wsdl:output> |
|
998 |
</wsdl:operation> |
|
999 |
<wsdl:operation name="AddCheckList"> |
|
1000 |
<soap12:operation soapAction="urn:ServiceDeepView/AddCheckList" style="document" /> |
|
1001 |
<wsdl:input> |
|
1002 |
<soap12:body use="literal" /> |
|
1003 |
</wsdl:input> |
|
1004 |
<wsdl:output> |
|
1005 |
<soap12:body use="literal" /> |
|
1006 |
</wsdl:output> |
|
1007 |
</wsdl:operation> |
|
1008 |
<wsdl:operation name="GetCheckList"> |
|
1009 |
<soap12:operation soapAction="urn:ServiceDeepView/GetCheckList" style="document" /> |
|
1010 |
<wsdl:input> |
|
1011 |
<soap12:body use="literal" /> |
|
1012 |
</wsdl:input> |
|
1013 |
<wsdl:output> |
|
1014 |
<soap12:body use="literal" /> |
|
1015 |
</wsdl:output> |
|
1016 |
</wsdl:operation> |
|
1017 |
<wsdl:operation name="GetUserCheckList"> |
|
1018 |
<soap12:operation soapAction="urn:ServiceDeepView/GetUserCheckList" style="document" /> |
|
1019 |
<wsdl:input> |
|
1020 |
<soap12:body use="literal" /> |
|
1021 |
</wsdl:input> |
|
1022 |
<wsdl:output> |
|
1023 |
<soap12:body use="literal" /> |
|
1024 |
</wsdl:output> |
|
1025 |
</wsdl:operation> |
|
1026 |
<wsdl:operation name="GetCheckListHistory"> |
|
1027 |
<soap12:operation soapAction="urn:ServiceDeepView/GetCheckListHistory" style="document" /> |
|
1028 |
<wsdl:input> |
|
1029 |
<soap12:body use="literal" /> |
|
1030 |
</wsdl:input> |
|
1031 |
<wsdl:output> |
|
1032 |
<soap12:body use="literal" /> |
|
1033 |
</wsdl:output> |
|
1034 |
</wsdl:operation> |
|
1035 |
<wsdl:operation name="GetCheckListHistoryFirstOrDefault"> |
|
1036 |
<soap12:operation soapAction="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefault" style="document" /> |
|
1037 |
<wsdl:input> |
|
1038 |
<soap12:body use="literal" /> |
|
1039 |
</wsdl:input> |
|
1040 |
<wsdl:output> |
|
1041 |
<soap12:body use="literal" /> |
|
1042 |
</wsdl:output> |
|
1043 |
</wsdl:operation> |
|
1044 |
<wsdl:operation name="SavePageAngle"> |
|
1045 |
<soap12:operation soapAction="urn:ServiceDeepView/SavePageAngle" style="document" /> |
|
1046 |
<wsdl:input> |
|
1047 |
<soap12:body use="literal" /> |
|
1048 |
</wsdl:input> |
|
1049 |
<wsdl:output> |
|
1050 |
<soap12:body use="literal" /> |
|
1051 |
</wsdl:output> |
|
1052 |
</wsdl:operation> |
|
1053 |
<wsdl:operation name="GetMarkupInfo"> |
|
1054 |
<soap12:operation soapAction="urn:ServiceDeepView/GetMarkupInfo" style="document" /> |
|
1055 |
<wsdl:input> |
|
1056 |
<soap12:body use="literal" /> |
|
1057 |
</wsdl:input> |
|
1058 |
<wsdl:output> |
|
1059 |
<soap12:body use="literal" /> |
|
1060 |
</wsdl:output> |
|
1061 |
</wsdl:operation> |
|
1062 |
<wsdl:operation name="GetMarkupDataListperPage"> |
|
1063 |
<soap12:operation soapAction="urn:ServiceDeepView/GetMarkupDataListperPage" style="document" /> |
|
1064 |
<wsdl:input> |
|
1065 |
<soap12:body use="literal" /> |
|
1066 |
</wsdl:input> |
|
1067 |
<wsdl:output> |
|
1068 |
<soap12:body use="literal" /> |
|
1069 |
</wsdl:output> |
|
1070 |
</wsdl:operation> |
|
1071 |
<wsdl:operation name="AddMarkupInfo"> |
|
1072 |
<soap12:operation soapAction="urn:ServiceDeepView/AddMarkupInfo" style="document" /> |
|
1073 |
<wsdl:input> |
|
1074 |
<soap12:body use="literal" /> |
|
1075 |
</wsdl:input> |
|
1076 |
<wsdl:output> |
|
1077 |
<soap12:body use="literal" /> |
|
1078 |
</wsdl:output> |
|
1079 |
</wsdl:operation> |
|
1080 |
<wsdl:operation name="AddMarkupInfoVersion"> |
|
1081 |
<soap12:operation soapAction="urn:ServiceDeepView/AddMarkupInfoVersion" style="document" /> |
|
1082 |
<wsdl:input> |
|
1083 |
<soap12:body use="literal" /> |
|
1084 |
</wsdl:input> |
|
1085 |
<wsdl:output> |
|
1086 |
<soap12:body use="literal" /> |
|
1087 |
</wsdl:output> |
|
1088 |
</wsdl:operation> |
|
1089 |
<wsdl:operation name="AddMarkupData"> |
|
1090 |
<soap12:operation soapAction="urn:ServiceDeepView/AddMarkupData" style="document" /> |
|
1091 |
<wsdl:input> |
|
1092 |
<soap12:body use="literal" /> |
|
1093 |
</wsdl:input> |
|
1094 |
<wsdl:output> |
|
1095 |
<soap12:body use="literal" /> |
|
1096 |
</wsdl:output> |
|
1097 |
</wsdl:operation> |
|
1098 |
<wsdl:operation name="AvoidMarkupInfo"> |
|
1099 |
<soap12:operation soapAction="urn:ServiceDeepView/AvoidMarkupInfo" style="document" /> |
|
1100 |
<wsdl:input> |
|
1101 |
<soap12:body use="literal" /> |
|
1102 |
</wsdl:input> |
|
1103 |
<wsdl:output> |
|
1104 |
<soap12:body use="literal" /> |
|
1105 |
</wsdl:output> |
|
1106 |
</wsdl:operation> |
|
1107 |
<wsdl:operation name="SaveMarkupInfo"> |
|
1108 |
<soap12:operation soapAction="urn:ServiceDeepView/SaveMarkupInfo" style="document" /> |
|
1109 |
<wsdl:input> |
|
1110 |
<soap12:body use="literal" /> |
|
1111 |
</wsdl:input> |
|
1112 |
<wsdl:output> |
|
1113 |
<soap12:body use="literal" /> |
|
1114 |
</wsdl:output> |
|
1115 |
</wsdl:operation> |
|
1116 |
<wsdl:operation name="GetMarkupDataList"> |
|
1117 |
<soap12:operation soapAction="urn:ServiceDeepView/GetMarkupDataList" style="document" /> |
|
1118 |
<wsdl:input> |
|
1119 |
<soap12:body use="literal" /> |
|
1120 |
</wsdl:input> |
|
1121 |
<wsdl:output> |
|
1122 |
<soap12:body use="literal" /> |
|
1123 |
</wsdl:output> |
|
1124 |
</wsdl:operation> |
|
1125 |
<wsdl:operation name="Consolidate"> |
|
1126 |
<soap12:operation soapAction="urn:ServiceDeepView/Consolidate" style="document" /> |
|
1127 |
<wsdl:input> |
|
1128 |
<soap12:body use="literal" /> |
|
1129 |
</wsdl:input> |
|
1130 |
<wsdl:output> |
|
1131 |
<soap12:body use="literal" /> |
|
1132 |
</wsdl:output> |
|
1133 |
</wsdl:operation> |
|
1134 |
<wsdl:operation name="ConsolidateMergedPDF"> |
|
1135 |
<soap12:operation soapAction="urn:ServiceDeepView/ConsolidateMergedPDF" style="document" /> |
|
1136 |
<wsdl:input> |
|
1137 |
<soap12:body use="literal" /> |
|
1138 |
</wsdl:input> |
|
1139 |
<wsdl:output> |
|
1140 |
<soap12:body use="literal" /> |
|
1141 |
</wsdl:output> |
|
1142 |
</wsdl:operation> |
|
1143 |
<wsdl:operation name="TeamConsolidate"> |
|
1144 |
<soap12:operation soapAction="urn:ServiceDeepView/TeamConsolidate" style="document" /> |
|
1145 |
<wsdl:input> |
|
1146 |
<soap12:body use="literal" /> |
|
1147 |
</wsdl:input> |
|
1148 |
<wsdl:output> |
|
1149 |
<soap12:body use="literal" /> |
|
1150 |
</wsdl:output> |
|
1151 |
</wsdl:operation> |
|
1152 |
<wsdl:operation name="GetMember"> |
|
1153 |
<soap12:operation soapAction="urn:ServiceDeepView/GetMember" style="document" /> |
|
1154 |
<wsdl:input> |
|
1155 |
<soap12:body use="literal" /> |
|
1156 |
</wsdl:input> |
|
1157 |
<wsdl:output> |
|
1158 |
<soap12:body use="literal" /> |
|
1159 |
</wsdl:output> |
|
1160 |
</wsdl:operation> |
|
1161 |
<wsdl:operation name="GetSymbolList"> |
|
1162 |
<soap12:operation soapAction="urn:ServiceDeepView/GetSymbolList" style="document" /> |
|
1163 |
<wsdl:input> |
|
1164 |
<soap12:body use="literal" /> |
|
1165 |
</wsdl:input> |
|
1166 |
<wsdl:output> |
|
1167 |
<soap12:body use="literal" /> |
|
1168 |
</wsdl:output> |
|
1169 |
</wsdl:operation> |
|
1170 |
<wsdl:operation name="GetPublicSymbolDeptList"> |
|
1171 |
<soap12:operation soapAction="urn:ServiceDeepView/GetPublicSymbolDeptList" style="document" /> |
|
1172 |
<wsdl:input> |
|
1173 |
<soap12:body use="literal" /> |
|
1174 |
</wsdl:input> |
|
1175 |
<wsdl:output> |
|
1176 |
<soap12:body use="literal" /> |
|
1177 |
</wsdl:output> |
|
1178 |
</wsdl:operation> |
|
1179 |
<wsdl:operation name="GetPublicSymbolList"> |
|
1180 |
<soap12:operation soapAction="urn:ServiceDeepView/GetPublicSymbolList" style="document" /> |
|
1181 |
<wsdl:input> |
|
1182 |
<soap12:body use="literal" /> |
|
1183 |
</wsdl:input> |
|
1184 |
<wsdl:output> |
|
1185 |
<soap12:body use="literal" /> |
|
1186 |
</wsdl:output> |
|
1187 |
</wsdl:operation> |
|
1188 |
<wsdl:operation name="GetSymbolData"> |
|
1189 |
<soap12:operation soapAction="urn:ServiceDeepView/GetSymbolData" style="document" /> |
|
1190 |
<wsdl:input> |
|
1191 |
<soap12:body use="literal" /> |
|
1192 |
</wsdl:input> |
|
1193 |
<wsdl:output> |
|
1194 |
<soap12:body use="literal" /> |
|
1195 |
</wsdl:output> |
|
1196 |
</wsdl:operation> |
|
1197 |
<wsdl:operation name="GetSymbolImageURL"> |
|
1198 |
<soap12:operation soapAction="urn:ServiceDeepView/GetSymbolImageURL" style="document" /> |
|
1199 |
<wsdl:input> |
|
1200 |
<soap12:body use="literal" /> |
|
1201 |
</wsdl:input> |
|
1202 |
<wsdl:output> |
|
1203 |
<soap12:body use="literal" /> |
|
1204 |
</wsdl:output> |
|
1205 |
</wsdl:operation> |
|
1206 |
<wsdl:operation name="GetSignData"> |
|
1207 |
<soap12:operation soapAction="urn:ServiceDeepView/GetSignData" style="document" /> |
|
1208 |
<wsdl:input> |
|
1209 |
<soap12:body use="literal" /> |
|
1210 |
</wsdl:input> |
|
1211 |
<wsdl:output> |
|
1212 |
<soap12:body use="literal" /> |
|
1213 |
</wsdl:output> |
|
1214 |
</wsdl:operation> |
|
1215 |
<wsdl:operation name="GetSignStrokes"> |
|
1216 |
<soap12:operation soapAction="urn:ServiceDeepView/GetSignStrokes" style="document" /> |
|
1217 |
<wsdl:input> |
|
1218 |
<soap12:body use="literal" /> |
|
1219 |
</wsdl:input> |
|
1220 |
<wsdl:output> |
|
1221 |
<soap12:body use="literal" /> |
|
1222 |
</wsdl:output> |
|
1223 |
</wsdl:operation> |
|
1224 |
<wsdl:operation name="SetSignData"> |
|
1225 |
<soap12:operation soapAction="urn:ServiceDeepView/SetSignData" style="document" /> |
|
1226 |
<wsdl:input> |
|
1227 |
<soap12:body use="literal" /> |
|
1228 |
</wsdl:input> |
|
1229 |
<wsdl:output> |
|
1230 |
<soap12:body use="literal" /> |
|
1231 |
</wsdl:output> |
|
1232 |
</wsdl:operation> |
|
1233 |
<wsdl:operation name="SetSignStrokes"> |
|
1234 |
<soap12:operation soapAction="urn:ServiceDeepView/SetSignStrokes" style="document" /> |
|
1235 |
<wsdl:input> |
|
1236 |
<soap12:body use="literal" /> |
|
1237 |
</wsdl:input> |
|
1238 |
<wsdl:output> |
|
1239 |
<soap12:body use="literal" /> |
|
1240 |
</wsdl:output> |
|
1241 |
</wsdl:operation> |
|
1242 |
<wsdl:operation name="GetProjectName"> |
|
1243 |
<soap12:operation soapAction="urn:ServiceDeepView/GetProjectName" style="document" /> |
|
1244 |
<wsdl:input> |
|
1245 |
<soap12:body use="literal" /> |
|
1246 |
</wsdl:input> |
|
1247 |
<wsdl:output> |
|
1248 |
<soap12:body use="literal" /> |
|
1249 |
</wsdl:output> |
|
1250 |
</wsdl:operation> |
|
1251 |
<wsdl:operation name="GetPreRevSelect"> |
|
1252 |
<soap12:operation soapAction="urn:ServiceDeepView/GetPreRevSelect" style="document" /> |
|
1253 |
<wsdl:input> |
|
1254 |
<soap12:body use="literal" /> |
|
1255 |
</wsdl:input> |
|
1256 |
<wsdl:output> |
|
1257 |
<soap12:body use="literal" /> |
|
1258 |
</wsdl:output> |
|
1259 |
</wsdl:operation> |
|
1260 |
<wsdl:operation name="GetDocInfoOneSelect"> |
|
1261 |
<soap12:operation soapAction="urn:ServiceDeepView/GetDocInfoOneSelect" style="document" /> |
|
1262 |
<wsdl:input> |
|
1263 |
<soap12:body use="literal" /> |
|
1264 |
</wsdl:input> |
|
1265 |
<wsdl:output> |
|
1266 |
<soap12:body use="literal" /> |
|
1267 |
</wsdl:output> |
|
1268 |
</wsdl:operation> |
|
1269 |
<wsdl:operation name="GetPrintDocItemList"> |
|
1270 |
<soap12:operation soapAction="urn:ServiceDeepView/GetPrintDocItemList" style="document" /> |
|
1271 |
<wsdl:input> |
|
1272 |
<soap12:body use="literal" /> |
|
1273 |
</wsdl:input> |
|
1274 |
<wsdl:output> |
|
1275 |
<soap12:body use="literal" /> |
|
1276 |
</wsdl:output> |
|
1277 |
</wsdl:operation> |
|
1278 |
<wsdl:operation name="AddMessage"> |
|
1279 |
<soap12:operation soapAction="urn:ServiceDeepView/AddMessage" style="document" /> |
|
1280 |
<wsdl:input> |
|
1281 |
<soap12:body use="literal" /> |
|
1282 |
</wsdl:input> |
|
1283 |
<wsdl:output> |
|
1284 |
<soap12:body use="literal" /> |
|
1285 |
</wsdl:output> |
|
1286 |
</wsdl:operation> |
|
1287 |
<wsdl:operation name="GetMessage"> |
|
1288 |
<soap12:operation soapAction="urn:ServiceDeepView/GetMessage" style="document" /> |
|
1289 |
<wsdl:input> |
|
1290 |
<soap12:body use="literal" /> |
|
1291 |
</wsdl:input> |
|
1292 |
<wsdl:output> |
|
1293 |
<soap12:body use="literal" /> |
|
1294 |
</wsdl:output> |
|
1295 |
</wsdl:operation> |
|
1296 |
<wsdl:operation name="FinalPDF_GetDocinfo"> |
|
1297 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetDocinfo" style="document" /> |
|
1298 |
<wsdl:input> |
|
1299 |
<soap12:body use="literal" /> |
|
1300 |
</wsdl:input> |
|
1301 |
<wsdl:output> |
|
1302 |
<soap12:body use="literal" /> |
|
1303 |
</wsdl:output> |
|
1304 |
</wsdl:operation> |
|
1305 |
<wsdl:operation name="FinalPDF_GetDocumentItem"> |
|
1306 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetDocumentItem" style="document" /> |
|
1307 |
<wsdl:input> |
|
1308 |
<soap12:body use="literal" /> |
|
1309 |
</wsdl:input> |
|
1310 |
<wsdl:output> |
|
1311 |
<soap12:body use="literal" /> |
|
1312 |
</wsdl:output> |
|
1313 |
</wsdl:operation> |
|
1314 |
<wsdl:operation name="FinalPDF_GetMarkupdata"> |
|
1315 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetMarkupdata" style="document" /> |
|
1316 |
<wsdl:input> |
|
1317 |
<soap12:body use="literal" /> |
|
1318 |
</wsdl:input> |
|
1319 |
<wsdl:output> |
|
1320 |
<soap12:body use="literal" /> |
|
1321 |
</wsdl:output> |
|
1322 |
</wsdl:operation> |
|
1323 |
<wsdl:operation name="FinalPDF_GetMarkupinfo"> |
|
1324 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetMarkupinfo" style="document" /> |
|
1325 |
<wsdl:input> |
|
1326 |
<soap12:body use="literal" /> |
|
1327 |
</wsdl:input> |
|
1328 |
<wsdl:output> |
|
1329 |
<soap12:body use="literal" /> |
|
1330 |
</wsdl:output> |
|
1331 |
</wsdl:operation> |
|
1332 |
<wsdl:operation name="FinalPDF_GetFinalPDFs"> |
|
1333 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFs" style="document" /> |
|
1334 |
<wsdl:input> |
|
1335 |
<soap12:body use="literal" /> |
|
1336 |
</wsdl:input> |
|
1337 |
<wsdl:output> |
|
1338 |
<soap12:body use="literal" /> |
|
1339 |
</wsdl:output> |
|
1340 |
</wsdl:operation> |
|
1341 |
<wsdl:operation name="FinalPDF_GetDocpage"> |
|
1342 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetDocpage" style="document" /> |
|
1343 |
<wsdl:input> |
|
1344 |
<soap12:body use="literal" /> |
|
1345 |
</wsdl:input> |
|
1346 |
<wsdl:output> |
|
1347 |
<soap12:body use="literal" /> |
|
1348 |
</wsdl:output> |
|
1349 |
</wsdl:operation> |
|
1350 |
<wsdl:operation name="FinalPDF_SetFinalPDFStatus"> |
|
1351 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatus" style="document" /> |
|
1352 |
<wsdl:input> |
|
1353 |
<soap12:body use="literal" /> |
|
1354 |
</wsdl:input> |
|
1355 |
<wsdl:output> |
|
1356 |
<soap12:body use="literal" /> |
|
1357 |
</wsdl:output> |
|
1358 |
</wsdl:operation> |
|
1359 |
<wsdl:operation name="FinalPDF_GetFinalPDFStatus"> |
|
1360 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFStatus" style="document" /> |
|
1361 |
<wsdl:input> |
|
1362 |
<soap12:body use="literal" /> |
|
1363 |
</wsdl:input> |
|
1364 |
<wsdl:output> |
|
1365 |
<soap12:body use="literal" /> |
|
1366 |
</wsdl:output> |
|
1367 |
</wsdl:operation> |
|
1368 |
<wsdl:operation name="FinalPDF_SetCurrentPage"> |
|
1369 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_SetCurrentPage" style="document" /> |
|
1370 |
<wsdl:input> |
|
1371 |
<soap12:body use="literal" /> |
|
1372 |
</wsdl:input> |
|
1373 |
<wsdl:output> |
|
1374 |
<soap12:body use="literal" /> |
|
1375 |
</wsdl:output> |
|
1376 |
</wsdl:operation> |
|
1377 |
<wsdl:operation name="FinalPDF_SetError"> |
|
1378 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_SetError" style="document" /> |
|
1379 |
<wsdl:input> |
|
1380 |
<soap12:body use="literal" /> |
|
1381 |
</wsdl:input> |
|
1382 |
<wsdl:output> |
|
1383 |
<soap12:body use="literal" /> |
|
1384 |
</wsdl:output> |
|
1385 |
</wsdl:operation> |
|
1386 |
<wsdl:operation name="FinalPDF_SetFinalResultPath"> |
|
1387 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_SetFinalResultPath" style="document" /> |
|
1388 |
<wsdl:input> |
|
1389 |
<soap12:body use="literal" /> |
|
1390 |
</wsdl:input> |
|
1391 |
<wsdl:output> |
|
1392 |
<soap12:body use="literal" /> |
|
1393 |
</wsdl:output> |
|
1394 |
</wsdl:operation> |
|
1395 |
<wsdl:operation name="SaveLog"> |
|
1396 |
<soap12:operation soapAction="urn:ServiceDeepView/SaveLog" style="document" /> |
|
1397 |
<wsdl:input> |
|
1398 |
<soap12:body use="literal" /> |
|
1399 |
</wsdl:input> |
|
1400 |
<wsdl:output> |
|
1401 |
<soap12:body use="literal" /> |
|
1402 |
</wsdl:output> |
|
1403 |
</wsdl:operation> |
|
1404 |
<wsdl:operation name="FinalPDF_GetCommentMember"> |
|
1405 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetCommentMember" style="document" /> |
|
1406 |
<wsdl:input> |
|
1407 |
<soap12:body use="literal" /> |
|
1408 |
</wsdl:input> |
|
1409 |
<wsdl:output> |
|
1410 |
<soap12:body use="literal" /> |
|
1411 |
</wsdl:output> |
|
1412 |
</wsdl:operation> |
|
1413 |
<wsdl:operation name="FinalPDF_GetProperties"> |
|
1414 |
<soap12:operation soapAction="urn:ServiceDeepView/FinalPDF_GetProperties" style="document" /> |
|
1415 |
<wsdl:input> |
|
1416 |
<soap12:body use="literal" /> |
|
1417 |
</wsdl:input> |
|
1418 |
<wsdl:output> |
|
1419 |
<soap12:body use="literal" /> |
|
1420 |
</wsdl:output> |
|
1421 |
</wsdl:operation> |
|
1422 |
</wsdl:binding> |
|
710 | 1423 |
<wsdl:service name="ServiceDeepView"> |
711 | 1424 |
<wsdl:port name="DeepViewPoint" binding="tns:DeepViewPoint"> |
712 | 1425 |
<soap:address location="http://localhost:44301/ServiceDeepView.svc" /> |
713 | 1426 |
</wsdl:port> |
1427 |
<wsdl:port name="MarkusAPIgzip" binding="tns:MarkusAPIgzip"> |
|
1428 |
<soap12:address location="http://localhost:44301/ServiceDeepView.svc/GZIP" /> |
|
1429 |
<wsa10:EndpointReference> |
|
1430 |
<wsa10:Address>http://localhost:44301/ServiceDeepView.svc/GZIP</wsa10:Address> |
|
1431 |
</wsa10:EndpointReference> |
|
1432 |
</wsdl:port> |
|
714 | 1433 |
</wsdl:service> |
715 | 1434 |
</wsdl:definitions> |
KCOM/Connected Services/ServiceDeepView/ServiceDeepView910.xsd | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" xmlns:xs="http://www.w3.org/2001/XMLSchema"> |
|
3 |
<xs:import schemaLocation="http://localhost:44301/ServiceDeepView.svc?xsd=xsd4" namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" /> |
|
4 |
<xs:complexType name="ArrayOfFAVORITE_DOC"> |
|
2 |
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema"> |
|
3 |
<xs:complexType name="ArrayOfKeyValueOfstringstring"> |
|
4 |
<xs:annotation> |
|
5 |
<xs:appinfo> |
|
6 |
<IsDictionary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</IsDictionary> |
|
7 |
</xs:appinfo> |
|
8 |
</xs:annotation> |
|
5 | 9 |
<xs:sequence> |
6 |
<xs:element minOccurs="0" maxOccurs="unbounded" name="FAVORITE_DOC" nillable="true" type="tns:FAVORITE_DOC" /> |
|
10 |
<xs:element minOccurs="0" maxOccurs="unbounded" name="KeyValueOfstringstring"> |
|
11 |
<xs:complexType> |
|
12 |
<xs:sequence> |
|
13 |
<xs:element name="Key" nillable="true" type="xs:string" /> |
|
14 |
<xs:element name="Value" nillable="true" type="xs:string" /> |
|
15 |
</xs:sequence> |
|
16 |
</xs:complexType> |
|
17 |
</xs:element> |
|
7 | 18 |
</xs:sequence> |
8 | 19 |
</xs:complexType> |
9 |
<xs:element name="ArrayOfFAVORITE_DOC" nillable="true" type="tns:ArrayOfFAVORITE_DOC" /> |
|
10 |
<xs:complexType name="FAVORITE_DOC"> |
|
11 |
<xs:complexContent mixed="false"> |
|
12 |
<xs:extension xmlns:q1="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q1:EntityObject"> |
|
13 |
<xs:sequence> |
|
14 |
<xs:element minOccurs="0" name="CREATE_TIME" type="xs:dateTime" /> |
|
15 |
<xs:element minOccurs="0" name="DESCRIPTION" nillable="true" type="xs:string" /> |
|
16 |
<xs:element minOccurs="0" name="DOCUMENT_ID" nillable="true" type="xs:string" /> |
|
17 |
<xs:element minOccurs="0" name="DOCUMENT_NO" nillable="true" type="xs:string" /> |
|
18 |
<xs:element minOccurs="0" name="FLAG" type="xs:int" /> |
|
19 |
<xs:element minOccurs="0" name="GROUP_NO" nillable="true" type="xs:string" /> |
|
20 |
<xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" /> |
|
21 |
<xs:element minOccurs="0" name="MEMBER_USER_ID" nillable="true" type="xs:string" /> |
|
22 |
<xs:element minOccurs="0" name="PAGE_NO" type="xs:int" /> |
|
23 |
<xs:element minOccurs="0" name="PROJECT_NO" nillable="true" type="xs:string" /> |
|
24 |
<xs:element minOccurs="0" name="REVISION" nillable="true" type="xs:string" /> |
|
25 |
</xs:sequence> |
|
26 |
</xs:extension> |
|
27 |
</xs:complexContent> |
|
28 |
</xs:complexType> |
|
29 |
<xs:element name="FAVORITE_DOC" nillable="true" type="tns:FAVORITE_DOC" /> |
|
30 |
<xs:complexType name="DOCINFO"> |
|
31 |
<xs:complexContent mixed="false"> |
|
32 |
<xs:extension xmlns:q2="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q2:EntityObject"> |
|
33 |
<xs:sequence> |
|
34 |
<xs:element minOccurs="0" name="DOCPAGE" nillable="true" type="tns:ArrayOfDOCPAGE" /> |
|
35 |
<xs:element minOccurs="0" name="DOCUMENT_ID" nillable="true" type="xs:string" /> |
|
36 |
<xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" /> |
|
37 |
<xs:element minOccurs="0" name="MARKUP_INFO" nillable="true" type="tns:ArrayOfMARKUP_INFO" /> |
|
38 |
<xs:element minOccurs="0" name="ORIGINAL_FILE" nillable="true" type="xs:string" /> |
|
39 |
<xs:element minOccurs="0" name="PAGE_COUNT" type="xs:int" /> |
|
40 |
<xs:element minOccurs="0" name="PROJECT_NO" nillable="true" type="xs:string" /> |
|
41 |
</xs:sequence> |
|
42 |
</xs:extension> |
|
43 |
</xs:complexContent> |
|
44 |
</xs:complexType> |
|
45 |
<xs:element name="DOCINFO" nillable="true" type="tns:DOCINFO" /> |
|
46 |
<xs:complexType name="ArrayOfDOCPAGE"> |
|
47 |
<xs:sequence> |
|
48 |
<xs:element minOccurs="0" maxOccurs="unbounded" name="DOCPAGE" nillable="true" type="tns:DOCPAGE" /> |
|
49 |
</xs:sequence> |
|
50 |
</xs:complexType> |
|
51 |
<xs:element name="ArrayOfDOCPAGE" nillable="true" type="tns:ArrayOfDOCPAGE" /> |
|
52 |
<xs:complexType name="DOCPAGE"> |
|
53 |
<xs:complexContent mixed="false"> |
|
54 |
<xs:extension xmlns:q3="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q3:EntityObject"> |
|
55 |
<xs:sequence> |
|
56 |
<xs:element minOccurs="0" name="DOCINFO" nillable="true" type="tns:DOCINFO" /> |
|
57 |
<xs:element minOccurs="0" name="DOCINFOReference" nillable="true" type="q3:EntityReferenceOfDOCINFOitJtO6kG" /> |
|
58 |
<xs:element minOccurs="0" name="DOCINFO_ID" nillable="true" type="xs:string" /> |
|
59 |
<xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" /> |
|
60 |
<xs:element minOccurs="0" name="PAGE_ANGLE" type="xs:int" /> |
|
61 |
<xs:element minOccurs="0" name="PAGE_HEIGHT" nillable="true" type="xs:string" /> |
|
62 |
<xs:element minOccurs="0" name="PAGE_NUMBER" type="xs:int" /> |
|
63 |
<xs:element minOccurs="0" name="PAGE_WIDTH" nillable="true" type="xs:string" /> |
|
64 |
</xs:sequence> |
|
65 |
</xs:extension> |
|
66 |
</xs:complexContent> |
|
67 |
</xs:complexType> |
|
68 |
<xs:element name="DOCPAGE" nillable="true" type="tns:DOCPAGE" /> |
|
69 |
<xs:complexType name="ArrayOfMARKUP_INFO"> |
|
70 |
<xs:sequence> |
|
71 |
<xs:element minOccurs="0" maxOccurs="unbounded" name="MARKUP_INFO" nillable="true" type="tns:MARKUP_INFO" /> |
|
72 |
</xs:sequence> |
|
73 |
</xs:complexType> |
|
74 |
<xs:element name="ArrayOfMARKUP_INFO" nillable="true" type="tns:ArrayOfMARKUP_INFO" /> |
|
75 |
<xs:complexType name="MARKUP_INFO"> |
|
76 |
<xs:complexContent mixed="false"> |
|
77 |
<xs:extension xmlns:q4="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q4:EntityObject"> |
|
78 |
<xs:sequence> |
|
79 |
<xs:element minOccurs="0" name="AVOID_CONSOLIDATE" type="xs:int" /> |
|
80 |
<xs:element minOccurs="0" name="CONSOLIDATE" type="xs:int" /> |
|
81 |
<xs:element minOccurs="0" name="CREATE_TIME" type="xs:dateTime" /> |
|
82 |
<xs:element minOccurs="0" name="DESCRIPTION" nillable="true" type="xs:string" /> |
|
83 |
<xs:element minOccurs="0" name="DOCINFO" nillable="true" type="tns:DOCINFO" /> |
|
84 |
<xs:element minOccurs="0" name="DOCINFOReference" nillable="true" type="q4:EntityReferenceOfDOCINFOitJtO6kG" /> |
|
85 |
<xs:element minOccurs="0" name="DOCINFO_ID" nillable="true" type="xs:string" /> |
|
86 |
<xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" /> |
|
87 |
<xs:element minOccurs="0" name="MARKUP_INFO_VERSION" nillable="true" type="tns:ArrayOfMARKUP_INFO_VERSION" /> |
|
88 |
<xs:element minOccurs="0" name="PART_CONSOLIDATE" type="xs:int" /> |
|
89 |
<xs:element minOccurs="0" name="UPDATE_TIME" nillable="true" type="xs:dateTime" /> |
|
90 |
<xs:element minOccurs="0" name="USER_ID" nillable="true" type="xs:string" /> |
|
91 |
</xs:sequence> |
|
92 |
</xs:extension> |
|
93 |
</xs:complexContent> |
|
94 |
</xs:complexType> |
|
95 |
<xs:element name="MARKUP_INFO" nillable="true" type="tns:MARKUP_INFO" /> |
|
96 |
<xs:complexType name="ArrayOfMARKUP_INFO_VERSION"> |
|
97 |
<xs:sequence> |
|
98 |
<xs:element minOccurs="0" maxOccurs="unbounded" name="MARKUP_INFO_VERSION" nillable="true" type="tns:MARKUP_INFO_VERSION" /> |
|
99 |
</xs:sequence> |
|
100 |
</xs:complexType> |
|
101 |
<xs:element name="ArrayOfMARKUP_INFO_VERSION" nillable="true" type="tns:ArrayOfMARKUP_INFO_VERSION" /> |
|
102 |
<xs:complexType name="MARKUP_INFO_VERSION"> |
|
103 |
<xs:complexContent mixed="false"> |
|
104 |
<xs:extension xmlns:q5="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q5:EntityObject"> |
|
105 |
<xs:sequence> |
|
106 |
<xs:element minOccurs="0" name="CREATE_DATE" type="xs:dateTime" /> |
|
107 |
<xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" /> |
|
108 |
<xs:element minOccurs="0" name="MARKUPINFO_ID" nillable="true" type="xs:string" /> |
|
109 |
<xs:element minOccurs="0" name="MARKUP_DATA" nillable="true" type="tns:ArrayOfMARKUP_DATA" /> |
|
110 |
<xs:element minOccurs="0" name="MARKUP_INFO" nillable="true" type="tns:MARKUP_INFO" /> |
|
111 |
<xs:element minOccurs="0" name="MARKUP_INFOReference" nillable="true" type="q5:EntityReferenceOfMARKUP_INFOitJtO6kG" /> |
|
112 |
</xs:sequence> |
|
113 |
</xs:extension> |
|
114 |
</xs:complexContent> |
|
115 |
</xs:complexType> |
|
116 |
<xs:element name="MARKUP_INFO_VERSION" nillable="true" type="tns:MARKUP_INFO_VERSION" /> |
|
117 |
<xs:complexType name="ArrayOfMARKUP_DATA"> |
|
118 |
<xs:sequence> |
|
119 |
<xs:element minOccurs="0" maxOccurs="unbounded" name="MARKUP_DATA" nillable="true" type="tns:MARKUP_DATA" /> |
|
120 |
</xs:sequence> |
|
121 |
</xs:complexType> |
|
122 |
<xs:element name="ArrayOfMARKUP_DATA" nillable="true" type="tns:ArrayOfMARKUP_DATA" /> |
|
123 |
<xs:complexType name="MARKUP_DATA"> |
|
124 |
<xs:complexContent mixed="false"> |
|
125 |
<xs:extension xmlns:q6="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q6:EntityObject"> |
|
126 |
<xs:sequence> |
|
127 |
<xs:element minOccurs="0" name="DATA" nillable="true" type="xs:string" /> |
|
128 |
<xs:element minOccurs="0" name="DATA_TYPE" type="xs:int" /> |
|
129 |
<xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" /> |
|
130 |
<xs:element minOccurs="0" name="InsertTime" nillable="true" type="xs:dateTime" /> |
|
131 |
<xs:element minOccurs="0" name="MARKUPINFO_VERSION_ID" nillable="true" type="xs:string" /> |
|
132 |
<xs:element minOccurs="0" name="MARKUP_INFO_VERSION" nillable="true" type="tns:MARKUP_INFO_VERSION" /> |
|
133 |
<xs:element minOccurs="0" name="MARKUP_INFO_VERSIONReference" nillable="true" type="q6:EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG" /> |
|
134 |
<xs:element minOccurs="0" name="PAGENUMBER" type="xs:int" /> |
|
135 |
<xs:element minOccurs="0" name="REMARK" nillable="true" type="xs:string" /> |
|
136 |
<xs:element minOccurs="0" name="SYMBOL_ID" nillable="true" type="xs:string" /> |
|
137 |
</xs:sequence> |
|
138 |
</xs:extension> |
|
139 |
</xs:complexContent> |
|
140 |
</xs:complexType> |
|
141 |
<xs:element name="MARKUP_DATA" nillable="true" type="tns:MARKUP_DATA" /> |
|
142 |
<xs:complexType name="DOCUMENT_ITEM"> |
|
143 |
<xs:complexContent mixed="false"> |
|
144 |
<xs:extension xmlns:q7="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q7:EntityObject"> |
|
145 |
<xs:sequence> |
|
146 |
<xs:element minOccurs="0" name="CreateDate" nillable="true" type="xs:dateTime" /> |
|
147 |
<xs:element minOccurs="0" name="DOCUMENT_ID" nillable="true" type="xs:string" /> |
|
148 |
<xs:element minOccurs="0" name="DOCUMENT_NAME" nillable="true" type="xs:string" /> |
|
149 |
<xs:element minOccurs="0" name="DOCUMENT_NO" nillable="true" type="xs:string" /> |
내보내기 Unified diff