tags:

views:

100

answers:

2

After reading this article, I'm thinking it's not possible. However, I have an ASP.NET 2.0 application that I need to put in our SharePoint environment. I know it is possible following the steps outlined in the article, but our SP admins only accept WSP packages for deployment into the enterprise environment.

Does anyone have any suggestions on how to achieve this?

A: 

What if you just used the page viewer web part. That allows you to simply embed the application within sharepoint. Or are you actually programming against sharepoint data / code ?

JonH
+2  A: 

Does your ASP.NET application need SharePoint context, e.g. will be accessed via ~site/_layouts/yourapp/default.aspx? If so, this is a simple task for WSPBuilder (wspbuilder.codeplex.com). If it doesn't need sharepoint context, then WSPs are the wrong solution to the wrong question. You should be looking at MSDeploy instead (or more reasonably, your infrastructure folks should be)

Have a look here: http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/89499dea-6178-478a-a994-cfb671143049/

-Oisin

x0n
Yes, my app uses the SP context. I did not know about WSPBuilder, but it worked perfectly. Thanks!
Nebakanezer