deployment

NHibernate and database changes/deployment

I'm looking into using NHibernate and Fluent NHibernate for my next project but one thing I'd like clearing up before hand is how do you manage changes to the database? eg, I have NH + FNH working, application has been deployed and is live but we make a change in the development environment, for example say we add a new property to a en...

Copy Local = false ignored when I Publish my ASP.NET Web Application

Hello, I have an ASP.NET Web Application that has several references set. I have Copy Local set to False for several of them, but when I Publish my application it copies the .dlls anyway. How can I turn that off for good? The dlls are registered in the GAC on the web server and I want to make sure that those are references instead of ...

SASS files management in Git version control system in Ruby on Rails

I'm using SASS files in Rails development. And I wonder if I should gitignore generated CSS files. The problem with adding CSS files in Git is that they are simply redundant. SASS files at public/stylesheets/sass are the files I need. So I have the following lines in gitignore: # public/stylesheets/*.css But if I do this, when I pus...

What are "Content Files" (in Visual Studio : Setup Project : File System

In the context of a Visual Studio 2008 Setup Project, what are "Content Files". In other words, when creating a setup project and defining the File System settings and choosing: Add Project Output > Content Files, what files will be added? For example, what has to be true about a file or its location for it to be considered a Content Fi...

Windows installer problem

Hi I've deveoped a windows setup applicaiton using c#. When I try to install it in one of my friend's system it is asking about windows installer is not installed and .net framework also not installed messages. How can I install those two things before I install my application. I want to integrate those values into my setup application...

how to create multi language windows installer?

Whats the best way to create the multi language installer for Office Addin Deployment Setup? Is it possible using VS.NET 2008, C# or do I need to use any 3rd party tool or like install shield 2009 ?? ...

checklist for QA\Prod phase

my application is web application. Visual studio 2008 we are using, .net platform. Source code deploying into QA environment when development phase is completes, this is the first time the code is moving to QA environment.now my question is any checklist is there before deploying the code. Please give some suggestions. ...

Can you remotely update a developmental iPhone App?

If someone has a development version of my iPhone application, is it possible to send that device an update? ...

Deployment checklist

I am starting to deploy my desktop application. It is a syntax highlighting notepad. I am considering deploying it on the web. What is like a list of things that I should do before I deploy my application? ...

Deploying simple scala app(non-webapp) managed with maven

I am new to the java/scala stack in general. So far I have a relatively simple scala application (not a webapp) setup and built build with maven2, and I'd like to be able to deploy the output to one or more production server (ubuntu on EC2, but that shouldn't matter I assume)? My main questions are: 1) What's the best way to get all the...

Jboss Container specific restart

Hi. We have a jboss server with multiple containers in it. Container1 deploying war1 and container2 deploying war2. We use the command $JBOSS_HOME/bin/shutdown.sh -S -s Does this command restarts all the containers; or there is a ip-port config to trigger restart/shutdown for specific containers? Is there even an option to restart ...

Deploying default settings for different customers

My question is sort of linked to this existing question http://stackoverflow.com/questions/1262836/how-to-deploy-a-desktop-net-application-with-custom-settings-per-user However, I understand the idea of using Application Settings what I can't find information on is, how should I deploy the application settings for different customers? ...

What makes deployment successful for some users and unsuccessful for others?

I am trying to deploy a Visual C++ application (developed with Microsoft Visual Studio 2008) using a Setup and Deployment Project. After installation, users on some target computers get the following error message after launching the application executable: “This application has failed to start because the application configuration is in...

Passing command-line arguments on clickonce deployment

Im using visual studio 2005 with C# to develop an application that can either perform certain actions by itself or open a form were the user can choose what to do. In order to decide which is done, the application checks its arguments [from main(string[] args)]. What I can't figure out or find is, is it posible to create two icons when...

Version Control and Deploy Rails Project with cPanel

In my server, what option i got is a basic unlimited server can host unlimited rails project possible to manage gem because it is using cpanel latest version with a ssh now my confuse is , how can i use the no ssh feature in the cpanel and ease my deployment ? i don't know is that possible to use the capistrano and git with it any guid...

Installing an application on a Windows system in a secured environment

One of the main advantages of web applications I often hear is that the deployment process is quick and painless, and that it even works in the most sealed off operating systems, as long as a browser is installed. I wonder if it is possible to make a lightweight installer for a thin client desktop application (for example written in C++)...

Multiple ASP.NET Configuration Files

I have found a number of pieces of information on having multiple ASP.NET configuration files for a web deployment. However, I am still unsure if I can accomplish what I want to accomplish. Basically, the website I am working on can be deployed to three different sites. Depending on the site that it is deployed to, the configuration s...

Subversion and test deployment.

I have a client who I'm trying to convince to implement Subversion (I know, I know). My pitch goes something like this: His test domain is visible to Google and other webcrawlers, despite his best efforts (robot.txt not withstanding). By putting the repository on an svn:// URL, we could avoid having the code crawled until the deploymen...

SQL Server reporting services - is it possible to select database as part of the report

We have been trying out SQL server reporting services. We are using SQL 2008 and Visual Studio 2008. I Have a couple of linked reports, along the lines of Report1: Summary of tickets that are still open past the date that they should have closed. Click through on a line to: Report2: Details of a ticket and it’s dependant history data. ...

How to deploy a JAX-RS application?

The JAX-RS 1.1 specification says on page 6: If no Application subclass is present the added servlet MUST be named: javax.ws.rs.core.Application What is the added servlet? Could it be an arbitrary servlet? If an Application subclass is present and there is already a servlet defined that has a servlet initialization pa...