프로젝트

일반

사용자정보

개정판 ab5aa762

IDab5aa762a6de4117a98af4c2e73ecc7f1056cf5b
상위 ac91e747
하위 9f55b953

김태성이(가) 약 5년 전에 추가함

Debug의 환경설정 수정

Change-Id: I48361ceef809186fa27bd1c3761697f68456f0a7

차이점 보기:

KCOMDataModel/DataModel/CIModel.Designer.cs
2073 2073
        private global::System.String _PROJECT_NO;
2074 2074
        partial void OnPROJECT_NOChanging(global::System.String value);
2075 2075
        partial void OnPROJECT_NOChanged();
2076
    
2077
        /// <summary>
2078
        /// 사용 가능한 메타데이터 설명서가 없습니다.
2079
        /// </summary>
2080
        [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
2081
        [DataMemberAttribute()]
2082
        public global::System.String ENSEMBLEINFO_URL
2083
        {
2084
            get
2085
            {
2086
                return _ENSEMBLEINFO_URL;
2087
            }
2088
            set
2089
            {
2090
                OnENSEMBLEINFO_URLChanging(value);
2091
                ReportPropertyChanging("ENSEMBLEINFO_URL");
2092
                _ENSEMBLEINFO_URL = StructuralObject.SetValidValue(value, true);
2093
                ReportPropertyChanged("ENSEMBLEINFO_URL");
2094
                OnENSEMBLEINFO_URLChanged();
2095
            }
2096
        }
2097
        private global::System.String _ENSEMBLEINFO_URL;
2098
        partial void OnENSEMBLEINFO_URLChanging(global::System.String value);
2099
        partial void OnENSEMBLEINFO_URLChanged();
2100 2076

  
2101 2077
        #endregion
2102 2078

  
KCOMDataModel/DataModel/CIModel.edmx
349 349
          <Property Name="RESULT_FILE" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
350 350
          <Property Name="RESULT" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
351 351
          <Property Name="PROJECT_NO" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
352
          <Property Name="ENSEMBLEINFO_URL" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
353 352
        </EntityType>
354 353
        <EntityType Name="DOCINFO">
355 354
          <Key>
......
618 617
    <EntitySetMapping Name="DOCUMENT_ITEM">
619 618
      <EntityTypeMapping TypeName="IsTypeOf(CIModel.DOCUMENT_ITEM)">
620 619
        <MappingFragment StoreEntitySet="DOCUMENT_ITEM">
621
          <ScalarProperty Name="ENSEMBLEINFO_URL" ColumnName="ENSEMBLEINFO_URL" />
622 620
                <ScalarProperty Name="ID" ColumnName="ID" />
623 621
          <ScalarProperty Name="REVISION" ColumnName="REVISION" />
624 622
          <ScalarProperty Name="DOCUMENT_NO" ColumnName="DOCUMENT_NO" />
KCOM_API/KCOM_API.csproj
117 117
      <Generator>SettingsSingleFileGenerator</Generator>
118 118
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
119 119
    </None>
120
    <None Include="Web.Debug.Doftech.config">
121
      <SubType>Designer</SubType>
122
    </None>
120 123
    <None Include="Web.Debug.config">
121 124
      <DependentUpon>Web.config</DependentUpon>
122 125
    </None>
126
    <None Include="Web.Debug.HyoSung.config">
127
      <SubType>Designer</SubType>
128
    </None>
123 129
    <None Include="Web.Release.config">
124 130
      <DependentUpon>Web.config</DependentUpon>
125 131
    </None>
KCOM_API/ServiceDeepView.svc.cs
457 457
                                       TO_VENDOR = docitem.RESULT_FILE,
458 458
                                       RESULT = docitem.RESULT,
459 459
                                       DocNo = docitem.DOCUMENT_NO,
460
                                       EnsembleLink = docitem.ENSEMBLEINFO_URL,
460
                                       //EnsembleLink = docitem.ENSEMBLEINFO_URL,
461 461
                                       //IsSyncPossible = docitem.DOCUMENT_ID == DocumentId ? false : entity.DOCINFO.Where(d => d.DOCUMENT_ID == docitem.DOCUMENT_ID).ToList().Count > 0 ? true : false
462 462
                                   });
463 463
                    _result = _vpList.ToList();
......
779 779
                        r.MarkupList = (from markupData in entity.MARKUP_DATA
780 780
                                        where markupData.MARKUPINFO_VERSION_ID == r.MarkupVersionID
781 781
                                        orderby markupData.PAGENUMBER
782
                                        select new MarkupItem { ID = markupData.ID, PageNumber = markupData.PAGENUMBER, Data = markupData.DATA, Data_Type = markupData.DATA_TYPE, Symbol_ID = markupData.SYMBOL_ID}).ToList();
782
                                        select new MarkupItem
783
                                        {
784
                                            ID = markupData.ID,
785
                                            PageNumber = markupData.PAGENUMBER,
786
                                            Data = markupData.DATA,
787
                                            Data_Type = markupData.DATA_TYPE,
788
                                            Symbol_ID = markupData.SYMBOL_ID
789
                                        }).ToList();
783 790
                    });
784 791

  
785 792
                    List<PROPERTIES> _ColorsProperties = new List<PROPERTIES>();
......
2588 2595
                            DOCUMENT_ID = doc.DOCUMENT_ID,
2589 2596
                            DOCUMENT_NO = doc.DOCUMENT_NO,
2590 2597
                            DOCUMENT_NAME = doc.DOCUMENT_NAME,
2591
                            ENSEMBLEINFO_URL = doc.ENSEMBLEINFO_URL,
2598
                            //ENSEMBLEINFO_URL = doc.ENSEMBLEINFO_URL,
2592 2599
                            GROUP_NO = doc.GROUP_NO,
2593 2600
                            RESULT = doc.RESULT,
2594 2601
                            REVISION = doc.REVISION,
KCOM_API/Web.Debug.Doftech.config
1
<?xml version="1.0"?>
2
<!--
3
  For more information on how to configure your ASP.NET application, please visit
4
  https://go.microsoft.com/fwlink/?LinkId=169433
5
  -->
6
<configuration>
7
  <configSections>
8
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
9
      <section name="KCOM_API.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
10
    </sectionGroup>
11
  </configSections>
12
  <connectionStrings>
13
      <!--Doftech Connection String-->
14
      <add name="ConnectionString" connectionString="metadata=res://*/DataModel.KCOM_Model.csdl|res://*/DataModel.KCOM_Model.ssdl|res://*/DataModel.KCOM_Model.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=cloud.devdoftech.co.kr,7777;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
15
    <add name="CIConnectionString" connectionString="metadata=res://*/DataModel.CIModel.csdl|res://*/DataModel.CIModel.ssdl|res://*/DataModel.CIModel.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=cloud.devdoftech.co.kr,7777;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
16
      <!--Doftech Connection String-->
17
  </connectionStrings>
18
  
19
  <!--
20
    web.config 변경 내용에 대한 설명은  http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오.
21

  
22
    다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다.
23
      <system.Web>
24
        <httpRuntime targetFramework="4.5" />
25
      </system.Web>
26
  -->
27
  <system.web>
28
    <compilation debug="true" targetFramework="4.5"/>
29
    <pages controlRenderingCompatibilityVersion="4.0"/>
30
  </system.web>
31
  <system.serviceModel>
32
    <diagnostics wmiProviderEnabled="true">
33
      <messageLogging logEntireMessage="true" logMalformedMessages="true"
34
        logMessagesAtTransportLevel="true" />
35
      <endToEndTracing activityTracing="true" messageFlowTracing="true" />
36
    </diagnostics>
37
    <behaviors>
38
      <endpointBehaviors>
39
        <behavior name="WebHttpBehavior">
40
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" />
41
        </behavior>
42
      </endpointBehaviors>
43
      <serviceBehaviors>
44
        <behavior name="KCOM_API.SilverlightServiceBehavior">
45
          <serviceMetadata httpGetEnabled="true" />
46
          <serviceDebug includeExceptionDetailInFaults="false" />
47
          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
48
        </behavior>
49
        <behavior name="">
50
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
51
          <serviceDebug includeExceptionDetailInFaults="false" />
52
        </behavior>
53
      </serviceBehaviors>
54
    </behaviors>
55
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"
56
      multipleSiteBindingsEnabled="true" />
57
    <bindings>
58
      <basicHttpBinding>
59
        <binding name="LargeBuffer" receiveTimeout="04:30:00" openTimeout="00:30:00" sendTimeout="04:30:00" closeTimeout="00:30:00" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
60
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
61
        </binding>
62
      </basicHttpBinding>
63
    </bindings>
64
    <services>
65
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"
66
        name="KCOM_API.ServiceDeepView">
67
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"
68
          name="DeepViewPoint" contract="KCOM_API.ServiceDeepView">
69
          <identity>
70
            <dns value="localhost" />
71
          </identity>
72
        </endpoint>
73
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
74
      </service>
75
      <service name="KCOM_API.MarkusService">
76
        <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior"
77
          binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint"
78
          contract="KCOM_API.MarkusService" />
79
        <endpoint binding="basicHttpBinding" bindingConfiguration=""
80
          name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" />
81
      </service>
82
    </services>
83
  </system.serviceModel>
84
  <system.webServer>
85
    <validation validateIntegratedModeConfiguration="false"/>
86
  </system.webServer>
87
  <applicationSettings>
88
    <KCOM_API.Properties.Settings>
89
      <setting name="TileSoucePath" serializeAs="String">
90
        <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
91
      </setting>
92
      <setting name="TileSoucePath_SUB" serializeAs="String">
93
        <value>http://192.168.0.67:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
94
      </setting>
95
    </KCOM_API.Properties.Settings>
96
  </applicationSettings>
97
</configuration>
KCOM_API/Web.Debug.HyoSung.config
1
<?xml version="1.0"?>
2
<!--
3
  For more information on how to configure your ASP.NET application, please visit
4
  https://go.microsoft.com/fwlink/?LinkId=169433
5
  -->
6
<configuration>
7
  <configSections>
8
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
9
      <section name="KCOM_API.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
10
    </sectionGroup>
11
  </configSections>
12
  <connectionStrings>
13
      <!--효성 Connection String-->
14
      <add name="ConnectionString" connectionString="metadata=res://*/DataModel.KCOM_Model.csdl|res://*/DataModel.KCOM_Model.ssdl|res://*/DataModel.KCOM_Model.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.11.252.2,9875;initial catalog=markus;persist security info=True;user id=ProjectPortalDBConn;password=ProjectPortalDBConn;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
15
      <add name="CIConnectionString" connectionString="metadata=res://*/DataModel.CIModel.csdl|res://*/DataModel.CIModel.ssdl|res://*/DataModel.CIModel.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.11.252.2,9875;initial catalog=markus;persist security info=True;user id=ProjectPortalDBConn;password=ProjectPortalDBConn;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
16
      <!--효성 Connection String-->
17
  </connectionStrings>
18
  
19
  <!--
20
    web.config 변경 내용에 대한 설명은  http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오.
21

  
22
    다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다.
23
      <system.Web>
24
        <httpRuntime targetFramework="4.5" />
25
      </system.Web>
26
  -->
27
  <system.web>
28
    <compilation debug="true" targetFramework="4.5"/>
29
    <pages controlRenderingCompatibilityVersion="4.0"/>
30
  </system.web>
31
  <system.serviceModel>
32
    <diagnostics wmiProviderEnabled="true">
33
      <messageLogging logEntireMessage="true" logMalformedMessages="true"
34
        logMessagesAtTransportLevel="true" />
35
      <endToEndTracing activityTracing="true" messageFlowTracing="true" />
36
    </diagnostics>
37
    <behaviors>
38
      <endpointBehaviors>
39
        <behavior name="WebHttpBehavior">
40
          <webHttp helpEnabled="true" defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Json" />
41
        </behavior>
42
      </endpointBehaviors>
43
      <serviceBehaviors>
44
        <behavior name="KCOM_API.SilverlightServiceBehavior">
45
          <serviceMetadata httpGetEnabled="true" />
46
          <serviceDebug includeExceptionDetailInFaults="false" />
47
          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
48
        </behavior>
49
        <behavior name="">
50
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
51
          <serviceDebug includeExceptionDetailInFaults="false" />
52
        </behavior>
53
      </serviceBehaviors>
54
    </behaviors>
55
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"
56
      multipleSiteBindingsEnabled="true" />
57
    <bindings>
58
      <basicHttpBinding>
59
        <binding name="LargeBuffer" receiveTimeout="04:30:00" openTimeout="00:30:00" sendTimeout="04:30:00" closeTimeout="00:30:00" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
60
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
61
        </binding>
62
      </basicHttpBinding>
63
    </bindings>
64
    <services>
65
      <service behaviorConfiguration="KCOM_API.SilverlightServiceBehavior"
66
        name="KCOM_API.ServiceDeepView">
67
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"
68
          name="DeepViewPoint" contract="KCOM_API.ServiceDeepView">
69
          <identity>
70
            <dns value="localhost" />
71
          </identity>
72
        </endpoint>
73
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
74
      </service>
75
      <service name="KCOM_API.MarkusService">
76
        <endpoint address="Rest" behaviorConfiguration="WebHttpBehavior"
77
          binding="webHttpBinding" bindingConfiguration="" name="MarkusServiceWebEndPoint"
78
          contract="KCOM_API.MarkusService" />
79
        <endpoint binding="basicHttpBinding" bindingConfiguration=""
80
          name="MarkusServiceEndPoint" contract="KCOM_API.MarkusService" />
81
      </service>
82
    </services>
83
  </system.serviceModel>
84
  <system.webServer>
85
    <validation validateIntegratedModeConfiguration="false"/>
86
  </system.webServer>
87
  <applicationSettings>
88
    <KCOM_API.Properties.Settings>
89
      <setting name="TileSoucePath" serializeAs="String">
90
        <value>http://10.11.252.3:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
91
      </setting>
92
      <setting name="TileSoucePath_SUB" serializeAs="String">
93
        <value>http://10.11.252.3:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png</value>
94
      </setting>
95
    </KCOM_API.Properties.Settings>
96
  </applicationSettings>
97
</configuration>
KCOM_API/Web.config
10 10
    </sectionGroup>
11 11
  </configSections>
12 12
  <connectionStrings>
13
    <add name="ConnectionString" connectionString="metadata=res://*/DataModel.KCOM_Model.csdl|res://*/DataModel.KCOM_Model.ssdl|res://*/DataModel.KCOM_Model.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=cloud.devdoftech.co.kr,7777;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
13
      <!--효성 Connection String-->
14
      <!--<add name="ConnectionString" connectionString="metadata=res://*/DataModel.KCOM_Model.csdl|res://*/DataModel.KCOM_Model.ssdl|res://*/DataModel.KCOM_Model.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.11.252.2,9875;initial catalog=markus;persist security info=True;user id=ProjectPortalDBConn;password=ProjectPortalDBConn;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
15
      <add name="CIConnectionString" connectionString="metadata=res://*/DataModel.CIModel.csdl|res://*/DataModel.CIModel.ssdl|res://*/DataModel.CIModel.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.11.252.2,9875;initial catalog=markus;persist security info=True;user id=ProjectPortalDBConn;password=ProjectPortalDBConn;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>-->
16
      <!--효성 Connection String-->
17

  
18
      <!--Doftech Connection String-->
19
      <add name="ConnectionString" connectionString="metadata=res://*/DataModel.KCOM_Model.csdl|res://*/DataModel.KCOM_Model.ssdl|res://*/DataModel.KCOM_Model.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=cloud.devdoftech.co.kr,7777;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
14 20
    <add name="CIConnectionString" connectionString="metadata=res://*/DataModel.CIModel.csdl|res://*/DataModel.CIModel.ssdl|res://*/DataModel.CIModel.msl;provider=System.Data.SqlClient;provider=System.Data.SqlClient;provider connection string=&quot;data source=cloud.devdoftech.co.kr,7777;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
21
      <!--Doftech Connection String-->
15 22
  </connectionStrings>
16 23
  
17 24
  <!--

내보내기 Unified diff

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