I try to instantiate a instance of SPSite on the farm server in a custom software (MyApp.exe) and I give in parameter the whole website (http://mysite:80/). I also made sure that the account running MyApp.exe is Site Collection Administrator.

However, I can't make an instance of SPSite whatever I am trying to do. I always gives back "FileNotFoundException".

Anyone got an idea?

StackTrace:

at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken)
at Microsoft.SharePoint.SPSite..ctor(String requestUrl) at MyCompanyName.Service.HelperClass.GetItemStateInSharePoint(SharePointItem item) in C:\Workspaces\MyCompanyName\Development\Main\MyCompanyName.SharePoint\Service\HelperClass.cs:line 555

Another side note... I have a Web Application + Site collection that I can access through the browser without any problem.

link|improve this question

Can you put your stack trace? – axk Nov 5 '08 at 19:23
I fixed my problem but I don't know what caused it. – Maxime Rouiller Nov 5 '08 at 20:34
feedback

16 Answers

up vote 7 down vote accepted

The FileNotFoundException is thrown by SharePoint when it cannot find the requested site collection in the SharePoint configuration database. My guess is that you have not yet created a site collection on the URL http://mysite:80. I see the following stack trace if I try and instantiate a new SPSite object with the URL of a non-existing site collection:

System.IO.FileNotFoundException : The site http://server/sites/bah could not be found in the Web application SPWebApplication 
Name=SharePoint - 80 Parent=SPWebService.
at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken)
at Microsoft.SharePoint.SPSite..ctor(String requestUrl)

Specify the proper URL of your site collection or open Central Administration and create a new Site Collection.

link|improve this answer
I have a Web Application + Site collection that I can access through the browser. – Maxime Rouiller Nov 5 '08 at 19:54
9  
hmm, then it might be a permission issue. Try running your app with the same credentials as the application pool instead of the site collection admin. Otherwise the problem could also be because your SharePoint is 64-Bit but your app is running in 32-bit mode. – Lars Fastrup Nov 5 '08 at 21:19
3  
@iaf : it was a permission issue. If you are running an EXE with a "unknown" user to SharePoint, that user needs to be dbo of the content DB + Farm Admin + Site Collection Admin. That's all. :) – Maxime Rouiller Nov 8 '08 at 22:42
4  
My issue was that I was calling 64-bit SharePoint 2010 assemblies, but running in 32-bit process. Thanks @lars-fastrup! – John Berberich Mar 2 '11 at 16:11
feedback

Read this site http://community.bamboosolutions.com/forums/t/8179.aspx if you are running your OS x64 bit and are using MSTest (32bit) it will fail, use nunit works!!!

link|improve this answer
1  
This turned out to be my issue. You need to be careful to check the CPU configuration for each project, it can be a bit obscure. – JL. Dec 17 '10 at 11:56
feedback

Changing the platform target in the build properties to x64 solved this issue for me on SharePoint 2010.

link|improve this answer
This did the trick for me as well. Thanks Charliedigital. As usual, SharePoint gives a very unhelpful error message. – BrokeMyLegBiking May 3 '11 at 15:54
feedback

It's also possible that the object model doesn't like the URL you're giving it. If you don't provide it with either the exact URL at which you created the site collection or an exact URL listed in your is configured in your Alternate Access Mappings, it will throw an exception that might not necessarily make sense. In your case you might try http://mysite or http://machinename.

link|improve this answer
I tried with a copy/paste of the string directly from the Alternate Access Mapping section. – Maxime Rouiller Nov 5 '08 at 19:55
feedback

This Issue is more of user permission issue give the following permission

User Permission SharePoint Site --- Minimum Read Permission

Sharepoint Server --- Add to WSS_ADMIN_WPG group

Database --- Sharepoint Content DB (Site collection database) - db_owner permission Sharepoint Config DB (Config DB of sharepoint installation) - - db_owner permission

Read more in my blog

http://sharepointinstallation.blogspot.com/2010/12/minimal-permission-required-to-execute.html

link|improve this answer
feedback

Stacktrace of the exception would be helpful.

I think you possibly can get some idea of what file it is and what is happening by disabling "just my code" in tools -> options -> debugging and looking at the filename argument in the call stack of the exception when the debugger shows it (if you can debug it of course), or maybe the name shows up in the exception message.

link|improve this answer
feedback

Check your web.config and see if there's a config there with a file missing.

Look in you 12 hive for the log. If your log settings are correct, you'll get the file missing.

EDIT: Check also if ALL your DLL are in the GAC. Check if your web.config file contains all the information: namespace,Classname, NameSpace, Version=version_number, Culture-your_culture, PublicKeyToken=your_signed_token

link|improve this answer
feedback

I have recently discovered that this problem with the constructor can be cause by starnge behaviour of the constructor.
I'm taking about MOSS 2007. When you're passing a full site URL to the constructor, what it seems to do is to really consider only the site portion of the URL, choosing the web application which is 'currently seleced' in the web application selector control.
Thus, for example, when you have "http://webapp/sites/site" and have "http://weabapp:22345" currently selected (the last time you selected it in such a selector) when you call

SPSite site = new SPSite("http://webapp/sites/site")

It tries to actually create a site object for "http://webapp:22345/sites/site" and fails.

link|improve this answer
feedback

I had the same issue. I wanted to run console application with my user id. I am web application owner + Farm Admin. Still was not able to run the application.

Issue was resolved by

  1. Changing the platform target in build properties to x64

  2. In site settings -->Users and Permissions --> Site Collection Administrators there were two names. Removed other name and it started working.

link|improve this answer
feedback

I was plagued by this a few weeks ago. Ultimately I discovered that the file that could not be found was the SharePoint assembly itself. The runtime was failing to load the satellite assembly via late-binding.

The solution to my problem was to register the SharePoint 12.0.0.0 Assemblies in the GAC. It doesn't sound like it's the same as your problem, but just FYI.

link|improve this answer
Nope. Everything is in the GAC. – Maxime Rouiller Nov 5 '08 at 19:59
feedback

We faced the same problem some days ago, and the solution was to set the application, that is trying to create de SPSite object, to use the same AppPool that the Sharepoint's web application.

Hope it helps.

link|improve this answer
feedback

The MSTest on x64 issue was the cause of this problem for me. Works in a console app.

link|improve this answer
feedback

I have similar kind of issue.

In my scenario, I was able to create the instance of SPSite from a console application, but when another team mate tried to do so, the application threw the same exception as mentioned above.

Solution: I added the other teammate as administrator on Content Db server box (this may not be possible for everyone), the code works fine and no error

link|improve this answer
feedback

I have also had a similar problem when the method that instantiates the SPSite is being run in an NUnit test. If I create a console or windows wrapper, it runs fine, but when it is called in an NUnit test, the same error is thrown. I haven't yet found a solution to this except to not use NUnit ...

link|improve this answer
feedback

If it is a console application accessing SharePoint 2010 you make sure your project's Build Target is x64 and the .NET Framework is 3.5.

link|improve this answer
feedback

You can keep the project compilation target set to "Any CPU". The important this is to configure the MSTest host process to run in 64bits. Open your .testsettings file, go to Hosts tab and set "Run tests in 64 bit..."

If after this when you run your tests VS tells you there aren't any, remove and add your test project again (I don't know a better workaround for this)

Hope it helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.