2012-01-19 45 views
0

我在c#中創建了一個Web服務,它從活動目錄中讀取所有組和用戶名,該功能工作正常,沒有任何錯誤,但現在我收到錯誤錯誤「沒有足夠的存儲空間可用於處理此命令」窗口服務器2008

"Not enough storage is available to process this command" 

這個功能是連接到窗口Server 2008的

<!--Used for Active Directory connections--> 
<add name="LDAPConStr" connectionString="LDAP://dc=servername,dc=cc,dc=hh"/> 

DirectoryEntry ldapServer = new DirectoryEntry(System.Configuration.ConfigurationManager.ConnectionStrings["LDAPConStr"].ConnectionString); 
DirectorySearcher searcher = new DirectorySearcher(ldapServer); 

我檢查了服務器和存儲是與它的罰款, 我怎麼能解決這個問題?

回答

相關問題