Click here to Skip to main content
16,022,417 members

Comments by sanketdeshmukh1989 (Top 2 by date)

sanketdeshmukh1989 30-May-12 1:57am View    
Hello,
I am using below code to check if service is active or not (in that I am accesing server state property ).And if it returns true,I am continuing with sharepoint user creation.

public bool StatusCheck(int siteIndex) {
try {
string ChildPath = "IIS://localhost/w3svc/" + siteIndex.ToString() ;
DirectoryEntry ChildObj = new DirectoryEntry(ChildPath);

int status = (Int32) ChildObj.Properties["ServerState"].Value;
if (status ==2 || status ==1 )
return true ;

if (status ==4 )
return false;

return false;
}
catch(Exception e) {
throw e;
}
}
sanketdeshmukh1989 27-Apr-12 1:35am View    
yes I am getting large data.i am retrieving user information from sql table of large number of users.some users might have exchange service assigned.After retriving ,it is giving outofmemoryexception at the time of serialise().