vote up 2 vote down star

Hi,

  1. We are looking to use the MVC Framework in our SP Application.
  2. This is what we are trying to accomplish... A virtual directory within the SPSite which can host and run MVC. for e.g., /_layouts/MVC/

Any hints on the required configuration changes (if at all this is possible) will be very helpful.

Kind regards, Ashish Sharma

flag

66% accept rate

7 Answers

vote up 6 vote down check

Ashish

This might be of interest to you http://www.codeplex.com/SharePointMVC

I published it about 5 minutes ago.

It is basically a library to help rendering ASP.MVC inside a SharePoint masterpage.

Still early days but u get the idea.

Regards

Simon

link|flag
vote up 4 vote down

You're going to have a hoot of a time de-inheriting everything (modules, handlers, assemblies, namespaces) in the MVC app's web.config. I would recommend that instead of trying to get MVC working inside of the same IIS web site, why not just run your app outside of SharePoint? Joel Oleson just blogged about using "widgets" or "web parts" as a form of SharePoint integration:

Joel Oleson

link|flag
vote up 1 vote down

Hi,

We are using the same approach that you have suggested and it has worked for a POC project. We host a virtual directory within the _layouts directory. You don't even need to give it its own application pool.

Just make sure that you have the MVC web.config in the created virtual directory. Strip out the parts for User management, etc added by Visual Studio.

The nice thing is you can use the SPContext, etc and they work the same way as they would in a webform page.

Kind Regards, Ashish

link|flag
vote up 0 vote down

I would recommend running your virtual directory in it's own app pool. I'm leveraging MVC on some other Microsoft products and the app pool's Managed Pipeline Mode must = 'Integrated' for MVC.

link|flag
vote up 0 vote down

ScottGu has stated that the MS MVC is currently integrating with SharePoint - http://weblogs.asp.net/scottgu/archive/2008/02/12/asp-net-mvc-framework-road-map-update.aspx#5792984

link|flag
This link states that ScottGu mentioned that it MIGHT be in a future release, but there is no integration with SharePoint at this point. – Mr. Kraus Nov 14 '08 at 8:48
Yes, and the question was could you do MS MVC in SP. The answer is no you can't. In the future you may be able to. You also may have a flying car, but it'd be wrong to say you will have them – Slace Nov 17 '08 at 21:41
vote up -2 vote down

Ashish,

I'd like to setup MVC inside a SharePoint _layouts folder as you have done.

I was wondering if you can use the SharePoint master page?

Regards Garth

link|flag

Your Answer

Get an OpenID
or
never shown

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