开发者

SharePoint 2007 Web Application is not found

开发者 https://www.devze.com 2022-12-30 00:55 出处:网络
I created a Web Application called testwebapp and then a site collection (testsite).开发者_StackOverflow社区When I try siteCollection = new SPSite(\"http://localhost\"); in Visual Studio 2008 it throw

I created a Web Application called testwebapp and then a site collection (testsite). 开发者_StackOverflow社区When I try siteCollection = new SPSite("http://localhost"); in Visual Studio 2008 it throws an error Web Application is not found. Of course, the localhost works in IE and I don't know why testwebapp doesn't work. Any ideas? TIA!

David


We saw a weird behavior like this once. Try putting a trailing slash on the end of the url when instantiating the site.

siteCollection = new SPSite("http://localhost/");

The problem we saw was that there were 2 web applications essentially sitting at the same url. One was completely hidden and it would be hit when we left the trailing slash off. Maybe you have some weirdness going on like that if you've deleted the root web application and added it back in?


Try giving the proper url instead of using localhost. So if your machine name is mymachine use:

siteCollection = new SPSite("http://mymachine/"); 

This should work.

0

精彩评论

暂无评论...
验证码 换一张
取 消