프로젝트

일반

사용자정보

개정판 119b58c6

ID119b58c6df5b6d452f4f8748aefc688cc3b49940
상위 04a7385a
하위 f87ee33e

김동진이(가) 6년 이상 전에 추가함

Team Consolidate Web Service Add

차이점 보기:

KCOM/Connected Services/ServiceDeepView/Reference.cs
30 30
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
31 31
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))]
32 32
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
33
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))]
33 34
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))]
34 35
    public partial class StructuralObject : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
35 36
        
......
72 73
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
73 74
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))]
74 75
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
76
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))]
75 77
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))]
76 78
    public partial class EntityObject : KCOM.ServiceDeepView.StructuralObject {
77 79
        
......
222 224
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC>))]
223 225
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
224 226
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM>))]
227
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))]
228
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.TALK>))]
225 229
    public partial class EntityKeyMember : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
226 230
        
227 231
        [System.NonSerializedAttribute()]
......
818 822
        
819 823
        bool EndConsolidate(System.IAsyncResult result);
820 824
        
825
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/TeamConsolidate", ReplyAction="urn:ServiceDeepView/TeamConsolidateResponse")]
826
        bool TeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems);
827
        
828
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/TeamConsolidate", ReplyAction="urn:ServiceDeepView/TeamConsolidateResponse")]
829
        System.IAsyncResult BeginTeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, System.AsyncCallback callback, object asyncState);
830
        
831
        bool EndTeamConsolidate(System.IAsyncResult result);
832
        
821 833
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMember", ReplyAction="urn:ServiceDeepView/GetMemberResponse")]
822 834
        KCOMDataModel.DataModel.MEMBER GetMember(string project_no, string user_id);
823 835
        
......
897 909
        System.IAsyncResult BeginGetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList, System.AsyncCallback callback, object asyncState);
898 910
        
899 911
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetPrintDocItemList(System.IAsyncResult result);
912
        
913
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMessage", ReplyAction="urn:ServiceDeepView/AddMessageResponse")]
914
        bool AddMessage(string project_no, KCOMDataModel.DataModel.TALK value);
915
        
916
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMessage", ReplyAction="urn:ServiceDeepView/AddMessageResponse")]
917
        System.IAsyncResult BeginAddMessage(string project_no, KCOMDataModel.DataModel.TALK value, System.AsyncCallback callback, object asyncState);
918
        
919
        bool EndAddMessage(System.IAsyncResult result);
920
        
921
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMessage", ReplyAction="urn:ServiceDeepView/GetMessageResponse")]
922
        System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> GetMessage(string project_no, string doc_id);
923
        
924
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMessage", ReplyAction="urn:ServiceDeepView/GetMessageResponse")]
925
        System.IAsyncResult BeginGetMessage(string project_no, string doc_id, System.AsyncCallback callback, object asyncState);
926
        
927
        System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> EndGetMessage(System.IAsyncResult result);
900 928
    }
901 929
    
902 930
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
......
1665 1693
    
1666 1694
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1667 1695
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1696
    public partial class TeamConsolidateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1697
        
1698
        private object[] results;
1699
        
1700
        public TeamConsolidateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1701
                base(exception, cancelled, userState) {
1702
            this.results = results;
1703
        }
1704
        
1705
        public bool Result {
1706
            get {
1707
                base.RaiseExceptionIfNecessary();
1708
                return ((bool)(this.results[0]));
1709
            }
1710
        }
1711
    }
1712
    
1713
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1714
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1668 1715
    public partial class GetMemberCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1669 1716
        
1670 1717
        private object[] results;
......
1855 1902
    
1856 1903
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1857 1904
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1905
    public partial class AddMessageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1906
        
1907
        private object[] results;
1908
        
1909
        public AddMessageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1910
                base(exception, cancelled, userState) {
1911
            this.results = results;
1912
        }
1913
        
1914
        public bool Result {
1915
            get {
1916
                base.RaiseExceptionIfNecessary();
1917
                return ((bool)(this.results[0]));
1918
            }
1919
        }
1920
    }
1921
    
1922
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1923
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1924
    public partial class GetMessageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1925
        
1926
        private object[] results;
1927
        
1928
        public GetMessageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1929
                base(exception, cancelled, userState) {
1930
            this.results = results;
1931
        }
1932
        
1933
        public System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> Result {
1934
            get {
1935
                base.RaiseExceptionIfNecessary();
1936
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.TALK>)(this.results[0]));
1937
            }
1938
        }
1939
    }
1940
    
1941
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1942
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1858 1943
    public partial class ServiceDeepViewClient : System.ServiceModel.ClientBase<KCOM.ServiceDeepView.ServiceDeepView>, KCOM.ServiceDeepView.ServiceDeepView {
1859 1944
        
1860 1945
        private BeginOperationDelegate onBeginGetSystemDataDelegate;
......
2097 2182
        
2098 2183
        private System.Threading.SendOrPostCallback onConsolidateCompletedDelegate;
2099 2184
        
2185
        private BeginOperationDelegate onBeginTeamConsolidateDelegate;
2186
        
2187
        private EndOperationDelegate onEndTeamConsolidateDelegate;
2188
        
2189
        private System.Threading.SendOrPostCallback onTeamConsolidateCompletedDelegate;
2190
        
2100 2191
        private BeginOperationDelegate onBeginGetMemberDelegate;
2101 2192
        
2102 2193
        private EndOperationDelegate onEndGetMemberDelegate;
......
2157 2248
        
2158 2249
        private System.Threading.SendOrPostCallback onGetPrintDocItemListCompletedDelegate;
2159 2250
        
2251
        private BeginOperationDelegate onBeginAddMessageDelegate;
2252
        
2253
        private EndOperationDelegate onEndAddMessageDelegate;
2254
        
2255
        private System.Threading.SendOrPostCallback onAddMessageCompletedDelegate;
2256
        
2257
        private BeginOperationDelegate onBeginGetMessageDelegate;
2258
        
2259
        private EndOperationDelegate onEndGetMessageDelegate;
2260
        
2261
        private System.Threading.SendOrPostCallback onGetMessageCompletedDelegate;
2262
        
2160 2263
        public ServiceDeepViewClient() {
2161 2264
        }
2162 2265
        
......
2256 2359
        
2257 2360
        public event System.EventHandler<ConsolidateCompletedEventArgs> ConsolidateCompleted;
2258 2361
        
2362
        public event System.EventHandler<TeamConsolidateCompletedEventArgs> TeamConsolidateCompleted;
2363
        
2259 2364
        public event System.EventHandler<GetMemberCompletedEventArgs> GetMemberCompleted;
2260 2365
        
2261 2366
        public event System.EventHandler<GetSymbolListCompletedEventArgs> GetSymbolListCompleted;
......
2276 2381
        
2277 2382
        public event System.EventHandler<GetPrintDocItemListCompletedEventArgs> GetPrintDocItemListCompleted;
2278 2383
        
2384
        public event System.EventHandler<AddMessageCompletedEventArgs> AddMessageCompleted;
2385
        
2386
        public event System.EventHandler<GetMessageCompletedEventArgs> GetMessageCompleted;
2387
        
2279 2388
        public IKCOM.KCOM_SystemInfo GetSystemData() {
2280 2389
            return base.Channel.GetSystemData();
2281 2390
        }
......
4402 4511
                        markupInfoItems}, this.onEndConsolidateDelegate, this.onConsolidateCompletedDelegate, userState);
4403 4512
        }
4404 4513
        
4514
        public bool TeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
4515
            return base.Channel.TeamConsolidate(project_no, _user_id, _doc_id, markupInfoItems);
4516
        }
4517
        
4518
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4519
        public System.IAsyncResult BeginTeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, System.AsyncCallback callback, object asyncState) {
4520
            return base.Channel.BeginTeamConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
4521
        }
4522
        
4523
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4524
        public bool EndTeamConsolidate(System.IAsyncResult result) {
4525
            return base.Channel.EndTeamConsolidate(result);
4526
        }
4527
        
4528
        private System.IAsyncResult OnBeginTeamConsolidate(object[] inValues, System.AsyncCallback callback, object asyncState) {
4529
            string project_no = ((string)(inValues[0]));
4530
            string _user_id = ((string)(inValues[1]));
4531
            string _doc_id = ((string)(inValues[2]));
4532
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems = ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(inValues[3]));
4533
            return this.BeginTeamConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
4534
        }
4535
        
4536
        private object[] OnEndTeamConsolidate(System.IAsyncResult result) {
4537
            bool retVal = this.EndTeamConsolidate(result);
4538
            return new object[] {
4539
                    retVal};
4540
        }
4541
        
4542
        private void OnTeamConsolidateCompleted(object state) {
4543
            if ((this.TeamConsolidateCompleted != null)) {
4544
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4545
                this.TeamConsolidateCompleted(this, new TeamConsolidateCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4546
            }
4547
        }
4548
        
4549
        public void TeamConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
4550
            this.TeamConsolidateAsync(project_no, _user_id, _doc_id, markupInfoItems, null);
4551
        }
4552
        
4553
        public void TeamConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, object userState) {
4554
            if ((this.onBeginTeamConsolidateDelegate == null)) {
4555
                this.onBeginTeamConsolidateDelegate = new BeginOperationDelegate(this.OnBeginTeamConsolidate);
4556
            }
4557
            if ((this.onEndTeamConsolidateDelegate == null)) {
4558
                this.onEndTeamConsolidateDelegate = new EndOperationDelegate(this.OnEndTeamConsolidate);
4559
            }
4560
            if ((this.onTeamConsolidateCompletedDelegate == null)) {
4561
                this.onTeamConsolidateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnTeamConsolidateCompleted);
4562
            }
4563
            base.InvokeAsync(this.onBeginTeamConsolidateDelegate, new object[] {
4564
                        project_no,
4565
                        _user_id,
4566
                        _doc_id,
4567
                        markupInfoItems}, this.onEndTeamConsolidateDelegate, this.onTeamConsolidateCompletedDelegate, userState);
4568
        }
4569
        
4405 4570
        public KCOMDataModel.DataModel.MEMBER GetMember(string project_no, string user_id) {
4406 4571
            return base.Channel.GetMember(project_no, user_id);
4407 4572
        }
......
4915 5080
                        doc_id,
4916 5081
                        _markupInfoList}, this.onEndGetPrintDocItemListDelegate, this.onGetPrintDocItemListCompletedDelegate, userState);
4917 5082
        }
5083
        
5084
        public bool AddMessage(string project_no, KCOMDataModel.DataModel.TALK value) {
5085
            return base.Channel.AddMessage(project_no, value);
5086
        }
5087
        
5088
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5089
        public System.IAsyncResult BeginAddMessage(string project_no, KCOMDataModel.DataModel.TALK value, System.AsyncCallback callback, object asyncState) {
5090
            return base.Channel.BeginAddMessage(project_no, value, callback, asyncState);
5091
        }
5092
        
5093
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5094
        public bool EndAddMessage(System.IAsyncResult result) {
5095
            return base.Channel.EndAddMessage(result);
5096
        }
5097
        
5098
        private System.IAsyncResult OnBeginAddMessage(object[] inValues, System.AsyncCallback callback, object asyncState) {
5099
            string project_no = ((string)(inValues[0]));
5100
            KCOMDataModel.DataModel.TALK value = ((KCOMDataModel.DataModel.TALK)(inValues[1]));
5101
            return this.BeginAddMessage(project_no, value, callback, asyncState);
5102
        }
5103
        
5104
        private object[] OnEndAddMessage(System.IAsyncResult result) {
5105
            bool retVal = this.EndAddMessage(result);
5106
            return new object[] {
5107
                    retVal};
5108
        }
5109
        
5110
        private void OnAddMessageCompleted(object state) {
5111
            if ((this.AddMessageCompleted != null)) {
5112
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5113
                this.AddMessageCompleted(this, new AddMessageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5114
            }
5115
        }
5116
        
5117
        public void AddMessageAsync(string project_no, KCOMDataModel.DataModel.TALK value) {
5118
            this.AddMessageAsync(project_no, value, null);
5119
        }
5120
        
5121
        public void AddMessageAsync(string project_no, KCOMDataModel.DataModel.TALK value, object userState) {
5122
            if ((this.onBeginAddMessageDelegate == null)) {
5123
                this.onBeginAddMessageDelegate = new BeginOperationDelegate(this.OnBeginAddMessage);
5124
            }
5125
            if ((this.onEndAddMessageDelegate == null)) {
5126
                this.onEndAddMessageDelegate = new EndOperationDelegate(this.OnEndAddMessage);
5127
            }
5128
            if ((this.onAddMessageCompletedDelegate == null)) {
5129
                this.onAddMessageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMessageCompleted);
5130
            }
5131
            base.InvokeAsync(this.onBeginAddMessageDelegate, new object[] {
5132
                        project_no,
5133
                        value}, this.onEndAddMessageDelegate, this.onAddMessageCompletedDelegate, userState);
5134
        }
5135
        
5136
        public System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> GetMessage(string project_no, string doc_id) {
5137
            return base.Channel.GetMessage(project_no, doc_id);
5138
        }
5139
        
5140
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5141
        public System.IAsyncResult BeginGetMessage(string project_no, string doc_id, System.AsyncCallback callback, object asyncState) {
5142
            return base.Channel.BeginGetMessage(project_no, doc_id, callback, asyncState);
5143
        }
5144
        
5145
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5146
        public System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> EndGetMessage(System.IAsyncResult result) {
5147
            return base.Channel.EndGetMessage(result);
5148
        }
5149
        
5150
        private System.IAsyncResult OnBeginGetMessage(object[] inValues, System.AsyncCallback callback, object asyncState) {
5151
            string project_no = ((string)(inValues[0]));
5152
            string doc_id = ((string)(inValues[1]));
5153
            return this.BeginGetMessage(project_no, doc_id, callback, asyncState);
5154
        }
5155
        
5156
        private object[] OnEndGetMessage(System.IAsyncResult result) {
5157
            System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> retVal = this.EndGetMessage(result);
5158
            return new object[] {
5159
                    retVal};
5160
        }
5161
        
5162
        private void OnGetMessageCompleted(object state) {
5163
            if ((this.GetMessageCompleted != null)) {
5164
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5165
                this.GetMessageCompleted(this, new GetMessageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5166
            }
5167
        }
5168
        
5169
        public void GetMessageAsync(string project_no, string doc_id) {
5170
            this.GetMessageAsync(project_no, doc_id, null);
5171
        }
5172
        
5173
        public void GetMessageAsync(string project_no, string doc_id, object userState) {
5174
            if ((this.onBeginGetMessageDelegate == null)) {
5175
                this.onBeginGetMessageDelegate = new BeginOperationDelegate(this.OnBeginGetMessage);
5176
            }
5177
            if ((this.onEndGetMessageDelegate == null)) {
5178
                this.onEndGetMessageDelegate = new EndOperationDelegate(this.OnEndGetMessage);
5179
            }
5180
            if ((this.onGetMessageCompletedDelegate == null)) {
5181
                this.onGetMessageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMessageCompleted);
5182
            }
5183
            base.InvokeAsync(this.onBeginGetMessageDelegate, new object[] {
5184
                        project_no,
5185
                        doc_id}, this.onEndGetMessageDelegate, this.onGetMessageCompletedDelegate, userState);
5186
        }
4918 5187
    }
4919 5188
}
KCOM/Connected Services/ServiceDeepView/ServiceDeepView.wsdl
253 253
  <wsdl:message name="ServiceDeepView_Consolidate_OutputMessage">
254 254
    <wsdl:part name="parameters" element="ConsolidateResponse" />
255 255
  </wsdl:message>
256
  <wsdl:message name="ServiceDeepView_TeamConsolidate_InputMessage">
257
    <wsdl:part name="parameters" element="TeamConsolidate" />
258
  </wsdl:message>
259
  <wsdl:message name="ServiceDeepView_TeamConsolidate_OutputMessage">
260
    <wsdl:part name="parameters" element="TeamConsolidateResponse" />
261
  </wsdl:message>
256 262
  <wsdl:message name="ServiceDeepView_GetMember_InputMessage">
257 263
    <wsdl:part name="parameters" element="GetMember" />
258 264
  </wsdl:message>
......
313 319
  <wsdl:message name="ServiceDeepView_GetPrintDocItemList_OutputMessage">
314 320
    <wsdl:part name="parameters" element="GetPrintDocItemListResponse" />
315 321
  </wsdl:message>
322
  <wsdl:message name="ServiceDeepView_AddMessage_InputMessage">
323
    <wsdl:part name="parameters" element="AddMessage" />
324
  </wsdl:message>
325
  <wsdl:message name="ServiceDeepView_AddMessage_OutputMessage">
326
    <wsdl:part name="parameters" element="AddMessageResponse" />
327
  </wsdl:message>
328
  <wsdl:message name="ServiceDeepView_GetMessage_InputMessage">
329
    <wsdl:part name="parameters" element="GetMessage" />
330
  </wsdl:message>
331
  <wsdl:message name="ServiceDeepView_GetMessage_OutputMessage">
332
    <wsdl:part name="parameters" element="GetMessageResponse" />
333
  </wsdl:message>
316 334
  <wsdl:portType name="ServiceDeepView">
317 335
    <wsdl:operation name="GetSystemData">
318 336
      <wsdl:input wsaw:Action="urn:ServiceDeepView/GetSystemData" message="ServiceDeepView_GetSystemData_InputMessage" />
......
474 492
      <wsdl:input wsaw:Action="urn:ServiceDeepView/Consolidate" message="ServiceDeepView_Consolidate_InputMessage" />
475 493
      <wsdl:output wsaw:Action="urn:ServiceDeepView/ConsolidateResponse" message="ServiceDeepView_Consolidate_OutputMessage" />
476 494
    </wsdl:operation>
495
    <wsdl:operation name="TeamConsolidate">
496
      <wsdl:input wsaw:Action="urn:ServiceDeepView/TeamConsolidate" message="ServiceDeepView_TeamConsolidate_InputMessage" />
497
      <wsdl:output wsaw:Action="urn:ServiceDeepView/TeamConsolidateResponse" message="ServiceDeepView_TeamConsolidate_OutputMessage" />
498
    </wsdl:operation>
477 499
    <wsdl:operation name="GetMember">
478 500
      <wsdl:input wsaw:Action="urn:ServiceDeepView/GetMember" message="ServiceDeepView_GetMember_InputMessage" />
479 501
      <wsdl:output wsaw:Action="urn:ServiceDeepView/GetMemberResponse" message="ServiceDeepView_GetMember_OutputMessage" />
......
514 536
      <wsdl:input wsaw:Action="urn:ServiceDeepView/GetPrintDocItemList" message="ServiceDeepView_GetPrintDocItemList_InputMessage" />
515 537
      <wsdl:output wsaw:Action="urn:ServiceDeepView/GetPrintDocItemListResponse" message="ServiceDeepView_GetPrintDocItemList_OutputMessage" />
516 538
    </wsdl:operation>
539
    <wsdl:operation name="AddMessage">
540
      <wsdl:input wsaw:Action="urn:ServiceDeepView/AddMessage" message="ServiceDeepView_AddMessage_InputMessage" />
541
      <wsdl:output wsaw:Action="urn:ServiceDeepView/AddMessageResponse" message="ServiceDeepView_AddMessage_OutputMessage" />
542
    </wsdl:operation>
543
    <wsdl:operation name="GetMessage">
544
      <wsdl:input wsaw:Action="urn:ServiceDeepView/GetMessage" message="ServiceDeepView_GetMessage_InputMessage" />
545
      <wsdl:output wsaw:Action="urn:ServiceDeepView/GetMessageResponse" message="ServiceDeepView_GetMessage_OutputMessage" />
546
    </wsdl:operation>
517 547
  </wsdl:portType>
518 548
</wsdl:definitions>
KCOM/Connected Services/ServiceDeepView/ServiceDeepView1.wsdl
364 364
        <soap:body use="literal" />
365 365
      </wsdl:output>
366 366
    </wsdl:operation>
367
    <wsdl:operation name="TeamConsolidate">
368
      <soap:operation soapAction="urn:ServiceDeepView/TeamConsolidate" style="document" />
369
      <wsdl:input>
370
        <soap:body use="literal" />
371
      </wsdl:input>
372
      <wsdl:output>
373
        <soap:body use="literal" />
374
      </wsdl:output>
375
    </wsdl:operation>
367 376
    <wsdl:operation name="GetMember">
368 377
      <soap:operation soapAction="urn:ServiceDeepView/GetMember" style="document" />
369 378
      <wsdl:input>
......
454 463
        <soap:body use="literal" />
455 464
      </wsdl:output>
456 465
    </wsdl:operation>
466
    <wsdl:operation name="AddMessage">
467
      <soap:operation soapAction="urn:ServiceDeepView/AddMessage" style="document" />
468
      <wsdl:input>
469
        <soap:body use="literal" />
470
      </wsdl:input>
471
      <wsdl:output>
472
        <soap:body use="literal" />
473
      </wsdl:output>
474
    </wsdl:operation>
475
    <wsdl:operation name="GetMessage">
476
      <soap:operation soapAction="urn:ServiceDeepView/GetMessage" style="document" />
477
      <wsdl:input>
478
        <soap:body use="literal" />
479
      </wsdl:input>
480
      <wsdl:output>
481
        <soap:body use="literal" />
482
      </wsdl:output>
483
    </wsdl:operation>
457 484
  </wsdl:binding>
458 485
  <wsdl:service name="ServiceDeepView">
459 486
    <wsdl:port name="DeepViewPoint" binding="tns:DeepViewPoint">
KCOM/Connected Services/ServiceDeepView/ServiceDeepView6.xsd
627 627
      </xs:sequence>
628 628
    </xs:complexType>
629 629
  </xs:element>
630
  <xs:element name="TeamConsolidate">
631
    <xs:complexType>
632
      <xs:sequence>
633
        <xs:element minOccurs="0" name="project_no" nillable="true" type="xs:string" />
634
        <xs:element minOccurs="0" name="_user_id" nillable="true" type="xs:string" />
635
        <xs:element minOccurs="0" name="_doc_id" nillable="true" type="xs:string" />
636
        <xs:element xmlns:q37="http://schemas.datacontract.org/2004/07/IKCOM" minOccurs="0" name="markupInfoItems" nillable="true" type="q37:ArrayOfMarkupInfoItem" />
637
      </xs:sequence>
638
    </xs:complexType>
639
  </xs:element>
640
  <xs:element name="TeamConsolidateResponse">
641
    <xs:complexType>
642
      <xs:sequence>
643
        <xs:element minOccurs="0" name="TeamConsolidateResult" type="xs:boolean" />
644
      </xs:sequence>
645
    </xs:complexType>
646
  </xs:element>
630 647
  <xs:element name="GetMember">
631 648
    <xs:complexType>
632 649
      <xs:sequence>
......
638 655
  <xs:element name="GetMemberResponse">
639 656
    <xs:complexType>
640 657
      <xs:sequence>
641
        <xs:element xmlns:q37="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetMemberResult" nillable="true" type="q37:MEMBER" />
658
        <xs:element xmlns:q38="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetMemberResult" nillable="true" type="q38:MEMBER" />
642 659
      </xs:sequence>
643 660
    </xs:complexType>
644 661
  </xs:element>
......
652 669
  <xs:element name="GetSymbolListResponse">
653 670
    <xs:complexType>
654 671
      <xs:sequence>
655
        <xs:element xmlns:q38="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetSymbolListResult" nillable="true" type="q38:ArrayOfSYMBOL_PRIVATE" />
672
        <xs:element xmlns:q39="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetSymbolListResult" nillable="true" type="q39:ArrayOfSYMBOL_PRIVATE" />
656 673
      </xs:sequence>
657 674
    </xs:complexType>
658 675
  </xs:element>
......
664 681
  <xs:element name="GetPublicSymbolDeptListResponse">
665 682
    <xs:complexType>
666 683
      <xs:sequence>
667
        <xs:element xmlns:q39="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="GetPublicSymbolDeptListResult" nillable="true" type="q39:ArrayOfstring" />
684
        <xs:element xmlns:q40="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="GetPublicSymbolDeptListResult" nillable="true" type="q40:ArrayOfstring" />
668 685
      </xs:sequence>
669 686
    </xs:complexType>
670 687
  </xs:element>
......
678 695
  <xs:element name="GetPublicSymbolListResponse">
679 696
    <xs:complexType>
680 697
      <xs:sequence>
681
        <xs:element xmlns:q40="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetPublicSymbolListResult" nillable="true" type="q40:ArrayOfSYMBOL_PUBLIC" />
698
        <xs:element xmlns:q41="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetPublicSymbolListResult" nillable="true" type="q41:ArrayOfSYMBOL_PUBLIC" />
682 699
      </xs:sequence>
683 700
    </xs:complexType>
684 701
  </xs:element>
......
738 755
  <xs:element name="GetPreRevSelectResponse">
739 756
    <xs:complexType>
740 757
      <xs:sequence>
741
        <xs:element xmlns:q41="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetPreRevSelectResult" nillable="true" type="q41:ArrayOfDOCUMENT_ITEM" />
758
        <xs:element xmlns:q42="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetPreRevSelectResult" nillable="true" type="q42:ArrayOfDOCUMENT_ITEM" />
742 759
      </xs:sequence>
743 760
    </xs:complexType>
744 761
  </xs:element>
......
753 770
  <xs:element name="GetDocInfoOneSelectResponse">
754 771
    <xs:complexType>
755 772
      <xs:sequence>
756
        <xs:element xmlns:q42="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetDocInfoOneSelectResult" nillable="true" type="q42:DOCINFO" />
773
        <xs:element xmlns:q43="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetDocInfoOneSelectResult" nillable="true" type="q43:DOCINFO" />
757 774
      </xs:sequence>
758 775
    </xs:complexType>
759 776
  </xs:element>
......
762 779
      <xs:sequence>
763 780
        <xs:element minOccurs="0" name="project_no" nillable="true" type="xs:string" />
764 781
        <xs:element minOccurs="0" name="doc_id" nillable="true" type="xs:string" />
765
        <xs:element xmlns:q43="http://schemas.datacontract.org/2004/07/IKCOM" minOccurs="0" name="_markupInfoList" nillable="true" type="q43:ArrayOfMarkupInfoItem" />
782
        <xs:element xmlns:q44="http://schemas.datacontract.org/2004/07/IKCOM" minOccurs="0" name="_markupInfoList" nillable="true" type="q44:ArrayOfMarkupInfoItem" />
766 783
      </xs:sequence>
767 784
    </xs:complexType>
768 785
  </xs:element>
769 786
  <xs:element name="GetPrintDocItemListResponse">
770 787
    <xs:complexType>
771 788
      <xs:sequence>
772
        <xs:element xmlns:q44="http://schemas.datacontract.org/2004/07/IKCOM" minOccurs="0" name="GetPrintDocItemListResult" nillable="true" type="q44:ArrayOfMarkupInfoItem" />
789
        <xs:element xmlns:q45="http://schemas.datacontract.org/2004/07/IKCOM" minOccurs="0" name="GetPrintDocItemListResult" nillable="true" type="q45:ArrayOfMarkupInfoItem" />
790
      </xs:sequence>
791
    </xs:complexType>
792
  </xs:element>
793
  <xs:element name="AddMessage">
794
    <xs:complexType>
795
      <xs:sequence>
796
        <xs:element minOccurs="0" name="project_no" nillable="true" type="xs:string" />
797
        <xs:element xmlns:q46="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="value" nillable="true" type="q46:TALK" />
798
      </xs:sequence>
799
    </xs:complexType>
800
  </xs:element>
801
  <xs:element name="AddMessageResponse">
802
    <xs:complexType>
803
      <xs:sequence>
804
        <xs:element minOccurs="0" name="AddMessageResult" type="xs:boolean" />
805
      </xs:sequence>
806
    </xs:complexType>
807
  </xs:element>
808
  <xs:element name="GetMessage">
809
    <xs:complexType>
810
      <xs:sequence>
811
        <xs:element minOccurs="0" name="project_no" nillable="true" type="xs:string" />
812
        <xs:element minOccurs="0" name="doc_id" nillable="true" type="xs:string" />
813
      </xs:sequence>
814
    </xs:complexType>
815
  </xs:element>
816
  <xs:element name="GetMessageResponse">
817
    <xs:complexType>
818
      <xs:sequence>
819
        <xs:element xmlns:q47="http://schemas.datacontract.org/2004/07/KCOMDataModel.DataModel" minOccurs="0" name="GetMessageResult" nillable="true" type="q47:ArrayOfTALK" />
773 820
      </xs:sequence>
774 821
    </xs:complexType>
775 822
  </xs:element>
KCOM/Connected Services/ServiceDeepView/ServiceDeepView8.xsd
311 311
    </xs:sequence>
312 312
  </xs:complexType>
313 313
  <xs:element name="ArrayOfDOCUMENT_ITEM" nillable="true" type="tns:ArrayOfDOCUMENT_ITEM" />
314
  <xs:complexType name="TALK">
315
    <xs:complexContent mixed="false">
316
      <xs:extension xmlns:q14="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses" base="q14:EntityObject">
317
        <xs:sequence>
318
          <xs:element minOccurs="0" name="DOCUMENT_ID" nillable="true" type="xs:string" />
319
          <xs:element minOccurs="0" name="ID" type="xs:int" />
320
          <xs:element minOccurs="0" name="MEMBER_ID" nillable="true" type="xs:string" />
321
          <xs:element minOccurs="0" name="MEMBER_NAME" nillable="true" type="xs:string" />
322
          <xs:element minOccurs="0" name="MSGSIDE" type="xs:unsignedByte" />
323
          <xs:element minOccurs="0" name="MSGTYPE" type="xs:unsignedByte" />
324
          <xs:element minOccurs="0" name="PAGENUMBER" nillable="true" type="xs:int" />
325
          <xs:element minOccurs="0" name="RECT_HEIGHT" nillable="true" type="xs:double" />
326
          <xs:element minOccurs="0" name="RECT_WIDTH" nillable="true" type="xs:double" />
327
          <xs:element minOccurs="0" name="RECT_X" nillable="true" type="xs:double" />
328
          <xs:element minOccurs="0" name="RECT_Y" nillable="true" type="xs:double" />
329
          <xs:element minOccurs="0" name="TEXT" nillable="true" type="xs:string" />
330
          <xs:element minOccurs="0" name="TIMESTAMP" type="xs:dateTime" />
331
        </xs:sequence>
332
      </xs:extension>
333
    </xs:complexContent>
334
  </xs:complexType>
335
  <xs:element name="TALK" nillable="true" type="tns:TALK" />
336
  <xs:complexType name="ArrayOfTALK">
337
    <xs:sequence>
338
      <xs:element minOccurs="0" maxOccurs="unbounded" name="TALK" nillable="true" type="tns:TALK" />
339
    </xs:sequence>
340
  </xs:complexType>
341
  <xs:element name="ArrayOfTALK" nillable="true" type="tns:ArrayOfTALK" />
314 342
</xs:schema>

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)