Sharepoint SPSite

2019-02-24 17:50发布

I am trying to create a spsite of object for sharepoint search but i am getting exception in production as website not found

SPSite site = new SPSite("sitename");
ServerContext scon = ServerContext.GetContext(site);
SearchContext srchcontext = SearchContext.GetContext(scon);
Scopes sc = new Scopes(srchcontext);

It throws exception site not found i have checked the name of site it exixts.

Any Help??

4条回答
不美不萌又怎样
2楼-- · 2019-02-24 17:58

If you create a console application and try the same code there, the same code works. You have to add application to IIS and change the app pool identity. I did the same and it worked for me.

查看更多
Fickle 薄情
3楼-- · 2019-02-24 17:59

You should also ensure that you are using an ip address you can hit from both your local box, and the server that you are running the program on.

Before executing the program, ping the webaddress from the cmd prompt. Another way to test it is to open up the exact webaddress in a browser from the box that you are executing the program.

It's possible you are trying to hit an internal site from a server which is not on the same domain.

And finally, as it says in the MSDN Documentation you shouldn't be using "SiteName" but rather ensure that you are using "SiteAbsoluteUrl".

查看更多
Anthone
4楼-- · 2019-02-24 18:11

Check that you are building against the correct target. I.e. x86 vs x64. I get this error when I build against x86 and try and run against x64.

查看更多
爱情/是我丢掉的垃圾
5楼-- · 2019-02-24 18:21

Do you have your permissions set up correctly? Check out this conversation...

http://social.msdn.microsoft.com/Forums/ja-JP/sharepointdevelopment/thread/4d923b6a-d423-4c42-82dd-3315872db9cc

You need to ensure (taken from the above) that:

  1. The user is a server farm administrator.
  2. The user has Read and Write permissions on the content database.
  3. The user is a site collection administrator.
  4. The user has permissions to access the Windows SharePoint Services site or the SharePoint Server 2007 site through which the code iterates.
查看更多
登录 后发表回答