2012-01-19 18 views
0

アクティブなディレクトリからすべてのグループとユーザー名を読み取るC#でWebサービスを作成しましたが、この関数はエラーなく正常に動作しましたが、エラー "このコマンドを処理するのに十分なストレージがありません"ウィンドウサーバー2008

"Not enough storage is available to process this command" 

エラーを取得し、この関数は、ウィンドウサーバー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); 

に接続している私には、サーバをチェックし、メモリはそれで結構です、 どのように私はこの問題を解決することができますか?

答えて

関連する問題