deployment

Google App Engine Project works in Development Environment but not when Deployed

Hi, I am in the process of moving my web website over to google app engine and am having a problem with my site when it is deployed. The application was being hosted on tomcat/mysql and predominately consists of jsp pages. I have read the fallowing google documentation: http://code.google.com/appengine/docs/java/config/webxml.html ...

how to copy war file progrmaticaly using c#

Possible Duplicate: How to copy a file to another path? hi, how to copy war files from one folder to another using c#. ...

Avoiding duplicate library .jars when exporting a single .jar in Eclipse

I'm using the Eclipse "Export... Runnable jar file" feature to package up my Clojure+Java application for deployment. This works great, magically including various resources and Clojure source files etc. The one issue I have is that various libraries I have get included multiple times from the "lib" directory dependant projects, e.g. I...

What do I need to configure to host django applications on linode?

Hi, I am about to choose hosting provider for my Django project. I took a look on a linode and it looks very promissing. It looks like very elastic solution but in my case this might be a disadvnatage since I'm not so experienced in servers configuration (alternative provider for me has great tools to quickly do the job, but linode has ...

Can I have more than one instance of some Django project configured in my system?

I have requirement like this: On one server(linux) I need to run 2 instances of the same Django project (the same name, different versions). I've noticed that there is some conflict with settings module (both projects use the same file, which of course is wrong). Do you have some pointers how to solve this problem? ...

IisVirtualDirectoryPhysicalPath parameter in TFS build

When I go to the web project's properties, under Package/Publish tab, in Physical Path of web application on the destination server, I have set: C:\Projects\TimeSheet When I create a package and examine the package's zip file and look SetParameters.xml file, I see: <setParameter name="IisVirtualDirectoryPhysicalPath" value="C:\Buil...

remove all but last 5 directories with shell script and find command

-not sure if this belongs here or on serverfault- What I want to do it list all directories in a directory and delete all of them, except for the last 5. We have a deployment system in place that will incrementally do something link this: /var/www/html/build1 /var/www/html/build2 /var/www/html/build3 /var/www/html/build4 /var/www/html/...

How to achieve backwards compatibility with my .NET plugin architecture

Background: I am developing an ASP.NET application with a server side plug in architecture. I define a set of interfaces in a pluginInterfaces .NET assembly. Third party developers can develop a plugin assembly against these interfaces, place their assembly in a plugin folder, and it will be dynamically loaded to offer new functionalit...

ClickOnce with a Proxy server (Corporate Firewall), significant delays in checking after .application loaded

Sometimes, when i click on my app link, it takes about 30 seconds before the app starts loading, while it's in the verifying stage. Other times, with the same install, one which i have loaded and used many times, it takes no time at all. Why? What can i change about the deployment to stop this? Please note that i have no admin access...

How to deploy a dbproj in vs2010?

Quick question, I'm new to dbproj, how do you actually deploy it to my sqlserver from vs2010? I built the dbproj, and it created a bunch of files in sql/debug folder, then what do I do? ...

How can I force VS 2008 Deployment Project to install two different versions of the same file in two different places?

Some Background: I have a VS 2008 Deployment project I am not using the project output, I am adding assembly files directly because we have third party licensing and obfuscation tools that we run on the assemblies after building them. Also included in this deployment project is a Help directory with examples. One of the Examples is a C...

SharePoint 2007 deploy MasterPage as Feature delete files on deactivation

I have a MasterPage that I am deploying to a SharePoint 2007 server. I am using a feature and a wsp to do the deployment. After deployment, my new masterpage isn't available to select and use for my site. Then, if I activate my feature, I am able to select my master page. But, when I deactivate my feature (or even retract the solution an...

Eclipse mvn project deploy to jboss

I changed my project to use maven2 (from just plain eclipse dynamic web project) and now I can't do Debug As > Debug on Server (JBoss). Previously I can just do Debug As > Debug on Server (JBoss) and Eclipse will happily copy the war file into jboss deploy directory and I can debug etc. Now it seems like eclipse just don't recognize th...

Any reason I'd get a NullReference exception on Windows 7 only?

My C#, .NET 4, app runs fine on XP (media centre to be exact - don't ask). On Windows 7, it installs fine, but immediately borks. It complains about a NullReferenceException in the callback of a background worker. (I'd love to give you more information, but short of installing VS on the target machine, this is all I can get.) So, anyth...

Good way of debugging "application configuration is incorrect" problems on end-user systems?

I build an executable which is dynamically linked to several DLLs. Most of these are installed by default on Windows, but maybe with slightly different versions. Others I distribute with the app, but they in turn may depend on other DLLs. If I run the executable locally and get the Windows error message saying that "Failed to load [what...

Http with Encryption from Client to Server and Server to Client

Here is a scenario: Desktop application Installed from the web Needs to call a WCF webservice Transferred data needs to be encrypted from Client to Server and Server to Client Is there a well understood solution for this that is: Secure Easy to manage and deploy I guess what this comes down to firstly is whether https encryption ...

Deploying Application with JVM

Hi, Our customer wants us to ship his application with an embedded JVM. We tried to convince him otherwise but had no luck. Now, here is the way we are contemplating taking. We want to take the Apache Harmony VM and libraries. We would then strip everything we don't need and ship the application with the bare minimum in terms of libra...

How to define multiple Commands for same File Type in VS2010 Deployment Project?

In my solution I have 2 project. Let's call them the "editor" and the "player". They both operate on the same file type. Now in my deployment project, I have set up a new file type ".myext", and defined the command to the primary output of "editor". Then I created an action "Edit". So far so good. Now I want a second action called "Play"...

Best way to deploy large *.war to tomcat

During development I frequently have to deploy a large war-file (~45 MB) to a remote test server, normally I copy the file with scp to the server. The WEB-INF/lib folder makes up the largest part of the war file, which includes all the required libraries (spring, apache-cxf, hibernate,...). Now I'm searching for an fast and easy a way ...

How to add the ear JNDI namespace to EJB2.x Beans?

In the project I am currently working at we have about 20 different EJB 2 JARs that are used across multiple (Swing-) clients. Example: customer-1.0.0.jar ^ ^ | | client-app-1 client-app-2 These different client applications have different release cycles so they usually need differe...