Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows 7系統教程 >> win7系統基礎知識 >> windowsazure經常出現的問題及解決方法(1)

windowsazure經常出現的問題及解決方法(1)

日期:2017/1/24 12:14:01      編輯:win7系統基礎知識
WindowsAzure作為微軟基於雲計算的操作系統,更是微軟“軟件和服務”技術的名稱,在它的實際操作過程中會遭遇那些問題呢?對於那些技術上的種種難題又該如何解決呢?今天小編就請教了專業人士,並為大家總結整理了Windowsazure在實際操作過程中常見問題及那些的解決方案,對此有興趣的同學們,可以來學習下哦.
  
  【1】.SomeTipsfortableservice.
  
  【1.1】修改最大連接數,如果需要。
  
  Configfile:Configfile:
  
  <system.Net>
  
  <connectionManagement>
  
  <addaddress="*"maxconnection="24"/>
  
  </connectionManagement>
  
  </system.Net>
  
  代碼:
  
  ServicePointManager.DefaultConnectionLimit=24;
  
  【1.2】Turnoff100-continue
  
  Configfile:
  
  <system.Net>
  
  <settings>
  
  <servicePointManagerexpect100Continue="false"/>
  
  </settings>
  
  </system.Net>
  
  代碼:
  
  ServicePointManager.Expect100Continue=false;
  
  【1.3】關閉Context跟蹤,如果用不上的環境(比如都是查詢)
  
  context.MergeOption=MergeOption.NoTracking;
Copyright © Windows教程網 All Rights Reserved