deployment

IIS7 deployment - duplicate 'system.web.extensions/scripting/scriptResourceHandler' section

On attempting to deploy a .net 3.5 website on the default app pool in IIS7 having the framework section set to 4.0, I get the following error. There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined. Commenting off the offending lines didnt help either. Any pointers on what I need to do or look at...

How do I deploy an Asp.net web application to a Sharepoint 2010 site using WSP

Suppose I created a custom web application that consists of: several assembly DLLs: web app, business logic, data services multiple aspx pages and ascx custom controls that use them custom configuration section custom HTTP module More or less the usual stuff. I would like to deploy it to a particular sharepoint site under a certain ...

Deploying gwt-dev.jar on Glassfish (NoClassDefFoundError)

On the server side of my GWT app I use classes from the org.apache.commons.httpclient package. These classes are conveniently packaged in gwt-dev.jar distributed with GWT. I include this jar (along the gwt-servlet.jar) in the WEB-INF/lib of the war. When deploying the produced war file on glassfish and calling the page I get the followin...

Calling a multistage capistrano task from within a capistrano task

I have a capistrano task that consolidates the deployment of multiple stages of a Rails project. For example: task :consolidated_task do build #creates a new release branch from master, #sets a variable with the relese branch name staging deploy.migrations production deploy.migrations end Is this the ...

iPhone deployment management

I have a little app that I want (potentially) a lot of my clients to test and give feedback on before launch, do I really need to setup a massive list of UUID's in the provisioning profile and build against that certificate, email them the .APP file and the certificate? I was hoping for a, perhaps, private app store? But I cannot seem t...

is it really important to put application and database on different servers (for asp.net and sql-server)?

I heard that for java (jboss + any DB) it's really important cuz there is going to be lot of problems, but for .net not so much, is it ? ...

Can two wrappers (x86 and x64) be used with the same AnyCPU application ?

Is there any solution to the problem of deploying a single application compiled with target platform as AnyCPU that rely on a .NET wrapper of legacy C++ code to both x86 and x64 operating systems? Do you need in all cases to provide two application executables one compiled with target platform as x86 and the other with x64 respectivaly r...

Is there a way in a visual studio database project to exclude certain object during deployment?

I have a scenario where I am using a visual studio 2010 database project to deploy changes to multiple database installations, but on certain ones I want to exclude a set of views from that copy. Is there a way using build configurations to exclude these views from being deployed? ...

deploying asp.net mvc app to iis7 .net 4.0 environment, images and css don't load

I am following the steps listed here: http://msdn.microsoft.com/en-us/library/dd483478.aspx at the bottom of that page are steps to manually migrate a web.config from .net 3.5 to 4.0 Currently, the site loads and routes fine, except for static data - images, css.. everything in the migration guide works fine, except : "7.Delete everyt...

Runtime problems for ASP.Net website in IIS7/Win7 .Net 4.0

In VS2010 the project's target framework is 4.0. In IIS7, localhost's .Net version is 4.0. But for my application's App Pool, there's no 4.0 framework available to choose from. And after I deploy the site and browse a file from it, I get this error: Parser Error Message: Unrecognized attribute 'targetFramework'. Note that attribute name...

How can I print my git tags in Capistrano as part of my deploy task?

I've set up Capistrano to ask me which git tag I want to deploy: # deploy.rb set(:branch) { Capistrano::CLI.ui.ask('Tag to deploy:') } This works as expected - if I specify v0.75 it will deploy that tag. However, I'd love it if I could print out the list of my tags before I get asked which one to deploy, with something like this: gi...

Tomcat5 "Null component" and "HTTP Status 404 - Servlet jsp is not available"

Hello, I need to move my application from tomcat6 to tomcat5. The application is deployed, but I can't access it with web browser. And now step by step: 1) Folders "work/Catalina/localhost/", "conf/Catalina/localhost/" and "webapps/" are free from files connected with my project. 2) Using tomcat-maven plugin I deploy my application a...

C# Deploying my application - clickonce from web only

So I have developed my application in C#. I am ready to deploy it. I want to make it so that users always launch it from my website (so that they always get updates, no install, etc.). Is ClickOnce the proper way to do this? I tried deploying ClickOnce to my server and a few things jump out at me: 1) The user is given the option to r...

python, svn, deploy applications with shared code

I have a few related applications that I want to deploy to different computers. They each share a large body of common code, and have some things unique to them. For example, I have a server and a client which use a lot of common classes to communicate to each other. I have yet more servers and clients which use some of the same classes,...

Hibernate single file databases: setup for thin client

I'm debeloping a Java Swing application, which persists the information through Hibernate, currently using PostgreSQL. Now, I would like to simplify the database setup on the client and I'm thinking about single file databases. The database I'm using is rather small and simple, so there are no special requirements. I'm only asking for on...

How to deploy android application to a device?

Hi, I developed an application. Now I want to deploy it on real device. Can any body please tell me the steps and the requirements to deploy it on a real device. Thanks Deepak ...

Recursively remove filename suffix from files in shell

When we develop locally, we append ".dev" or ".prod" to files that should be made available only to the development/production server respectively. What I would like to do is; after deploying the site to the server, recursively find all files with the ".dev" suffix (for example) and remove it (renaming the file). How would I go about do...

Deploying an asp.net 3.5 project to IIS 6 on windows server 2003

This is my first time deploying a project so please bear with me. I have a project which involves a database (sql server 2008 express) class library, webservice and a website which I want to deploy on a windows server 2003 with IIS 6. I look ed on the web and found some help how to do this for the website mostly but unfortunately not th...

Deploying a Java Project on Tom Cat

I have a java project (not a web application, no web.xml etc) I need to deploy it as a WAR on a tomcat with init servlet. Can anyone help me with the steps to do the same? ...

Django Deployment: Handling data in database

Right now I am using git for Django deployment which seems satisfying to me. My only problem is still how to handle the data in the database properly. Eg. I need often to edit data coming from the prodution site locally and put the data back on the production site (please note I'm talking about data changes and not schema migrations!). I...