개정판 ff01c725
issue #1187: 설치 파일 for SNI
Change-Id: If9472fac917642303f5a53438a6e8d0c19e82db2
KCOM/App.xaml.cs | ||
---|---|---|
129 | 129 |
App.FileLogger.Debug("hostEntry == null"); |
130 | 130 |
isExternal = true; |
131 | 131 |
} |
132 |
else if (!hostEntry.HostName.ToUpper().EndsWith(localdomain)) |
|
132 |
else if (!string.IsNullOrEmpty(localdomain) && !hostEntry.HostName.ToUpper().EndsWith(localdomain))
|
|
133 | 133 |
{ |
134 | 134 |
// 외부 사용자 |
135 | 135 |
App.FileLogger.Debug(string.Format("You are external user because located out side of given domain({0})\nYour domain is {1}", localdomain, hostEntry.HostName)); |
... | ... | |
202 | 202 |
#if DEBUG |
203 | 203 |
//sBaseServiceURL = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal); |
204 | 204 |
System.Diagnostics.Debug.WriteLine("sBaseServiceURL"); |
205 |
sBaseServiceURL = CommonLib.Common.GetConfigString("Debug_BaseClientAddress", "URL", "", isExternal);
|
|
205 |
sBaseServiceURL = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal); |
|
206 | 206 |
#else |
207 | 207 |
sBaseServiceURL = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal); |
208 | 208 |
#endif |
내보내기 Unified diff