web-deployment-project

ASP.NET Web Setup project with merge module (.msm) output.

Hello! Recently I've got a new task and still cannot find appropriate answer :( I need to build web setup project (I know, it's easy with VS web setup tools), but it should be distributed as a part of bigger setup project. I've never did it before, but I think there are two ways to install my web applications during big installation pr...

deploying asp.net MVC 1.0 app with HTTPS

We have an application built on ASP.NET MVC 1.0 which, once deployed, should be accessed with HTTPS. I tried few approaches for HTTPS but I have a few questions.: My home page does not need to be Secured (HTTPS), but rest of the hyperlinks following it will be Secured. I read about the action method attribute [requiresHTTPS] however I ...

Web Deployment Project With Nested Applications

I have a web application that I'm trying to create a Web Deployment Project for in Visual Studio 2008. My application also has a child web application. Both are web applications in IIS. I have added the Web Deployment Project so that I can automate the build process for this application. When I try to build the Web Deployment Project...

mod_wsgi not working with pinax of django

Hi, I tried hard to configure mod_wsgi for an pinax project. I followed the exact instructions from the site (pinaxproject.org), unfortunately, I always got the following error: [Thu Aug 26 17:32:46 2010] [error] [client 173.48.119.55] (13)Permission denied: mod_wsgi (pid=26749): Unable to connect to WSGI daemon process 'www.mysiste.c...

Upgrade install only leaves files new to the new version, deleting files common to both old and new

I have a Web Application and Deployment Project that was originally built in VS 2008 that installed version 1.51 of my application. I am now using VS 2010 (and my app requires .Net 4 and Installer 4.5) and updated my application and the deployment project to 1.52. If I run the setup on a virgin system, everything works as expected. If ...

ASP.NET: What deployment options do I have?

I'll soon be managing a fleet of ASP.NET webservers... What are the technical limitations with deploying an ASP.NET webserver? Can I just copy the file(s) over, restart the website, and I'm good to go? Is this any different than what VS2010's "deploy" does? Does it matter what "type" of project I have: a Web Site or a Web Applicati...

Web deploy and folder permissions

Hi I'm using VS 2010 to build the deployment package for a web application. I manually deploy it to the IIS 6.0 server using the deployment ccommand script it generates. All the stuff gets copied under the Inetpub default website properly. The only issue I have is that the folder permissions keep getting reset once I deploy. Say my web...

How to change URI of WAR file in EAR file in MyEclipse?

We have following projects: office - web application project console - web application project MyEclipse by default deploys these web applications to following locations: C:\tools\jboss-5.1.0.GA\server\web\deploy\office.war C:\tools\jboss-5.1.0.GA\server\web\deploy\console.war But in ant build and in our deployment s...

Weird issue with Web Deployment projects 2010

i'm in the process or upgrading my CI configuration to Web Deployment projects 2010 (from 2008) i'm geting a really strange issue durin build as shown below - i've been looking into it a a few hours to no resolve, and am starting to think the issue is elsewhere...) C:\Program Files (x86)\MSBuild\Microsoft\WebDeployment\v10.0\Microso...

Correct way to build and publish asp.net web application (with or without MSBuild)

I'm using VS2008 (just in case it matters), and I have a solution with multiple projects, some are class libraries, and some are build tools, which the main web project is dependent on. Until now I have been publishing with VS right click publish project, and everything builds and deploys correctly. I've tried creating a few simple publ...

How do I exclude the contents of a directory but not the directory itself in MSBuild

I'm using a Web Deployment Project 2008 to build my web application. I'd like to exclude the contents of several folders from the build but keep the blank directory itself. However, if I do this <ExcludeFromBuild Include="$(SourceWebPhysicalPath)\ImageCache\**\*.*" /> it will exclude the ImageCache directory itself. So how do I keep t...

Continuous Deployment using Visual Studio 2010

I have to deploy a website asap and then incrementally keep on adding some features, fixes. In Visual Studio 2008, I used to transfer/copy website where I could see in the dialog which file on my system is different from the server and deploy only that particular change. But that dialog seems to have been taken down in Visual Studio 20...

CruiseControl.NET with a web deployment project

Hey guys, we're currently using a web deployment project to compile the projects in our solution and deploy our website. We'd like to move to using CruiseControl .NET to give us the abilities to automate the builds, add testing, and initiate/review them from a website interface. Currently the web deployment project has project referenc...

ASP.Net MVC 2 - Merge all outputs to a single assembly

I have a Web Deployment Project in my solution. The solution consists of the MVC2 App and another Class Library. In the Web Deployment Project properties I have the Merge all outputs to a single assembly option ticked and I have given it a name. When I look in the bin folder I have all my reference DLL's from my MVC app, a DLL with th...

Mercurial HG Archive subdirectory for web deployment

I've got a Mercurial repository that contains a subdirectory for design files and a sub directory for code files. What's the best way for me to deploy the code subdirectories on my server, keeping it secure, without deploying the design files? ...

Deploying just HTML, CSS webpage to Tomcat

I am just getting started on developing a website. All I have at the moment is a HTML page supported by a couple of CSS stylesheets. Can I create a WAR file from the HTML and CSS pages? How do I deploy them on to a Tomcat server? Thanks. ...