deployment

Deploying Oracle PL/SQL Packages using a .Net deployment project

I am trying to put together a deployment package for a psolution which needs to configure an Oracle database schema. The schema contains most of the Oracle object types in one form or another. I want to run the deployment entirely from the deployment application, and have created a custom installation task to perform most of the action...

Capistrano's Failure

It is the first time I use Capistrano and the application had been already published without it. When I type cap deploy:migrations I get the following error after some successful commands: * executing "cd /home/collimarco/foto-fiori.com/releases/20090818111104; rake RAILS_ENV=production db:migrate" servers: ["foto-fiori.com"] ...

How to "publish" my application?

I've completed my little app with some help here on StackOverflow so now I have to give it to the world! Is there a simple way to do this? My app is just a little .exe file with a .settings file. I think users don't have to install anything but I may be mistaken. Thanks for all the help! ...

Clickonce ManifestReader Access Denied

Hi, Whenever I try to use: ApplicationManifest appManifest = (ApplicationManifest)ManifestReader.ReadManifest("ApplicationManifest", clientSetupFilesFolder, false); I get an "access denied" exception to the path while debugging. I am running Visual Studio 2008/SP1 under Admin. However, if I use StreamReader/StreamWriter, I have no p...

How to debug a published Asp.net MVC website from hosting internet server?

I just applied one account from asphostcentral then upload published asp.net mvc application on to that server, but i got an 500 errors, my application is KIGG. I just want to know how can I figure out how can I view errors in detail? ...

How do I deploy/publish a Web Application with CruiseControl.NET & MSBuild?

How do I deploy/publish a Web Application with CruiseControl.NET & MSBuild? I am new to CCNET and I able to get it to get the latest source from SVN and Build with MSBuild 3.5. How do I get the site to publish to another (DEVELOPMENT) server? Thanks for any pointers/examples. Cheers, ~ck ...

ASP.NET MVC Deployment Problem

I have deployed my application to a server running IIS6 using the method which invloves changing the routes to: public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( "Default", // Route n...

redeploying a .NET assembly that contains CLR stored procedures

I have written a CLR stored procedure that is in an assembly. I have a build system that can auto-build and deploy .net application from our source control repository. I want the two things to work together so I can redeploy the assembly that hosts the CLR stored proc. However it looks like, unlike IIS, simply replacing the binaries ...

differences between flash projector and flash swf

When publishing a flash project, is a flash projector simply the swf file and plugin wrapped into an executable (.exe for win, .app for mac)? with the goal being that the project doesn't run in a browser and is therefore not browser/plugin dependent? Are there more differences in terms of what actionscript can be run? can files that are...

How do you deploy an ActiveX control for ie from a VS2008 project?

What are the steps to deploying a project created in VS2008 (windows forms and c#) as a ActiveX control hosted in ie? I have a file uploader project that I want to be hosted on a webpage that users can navigate to, click 'trust this active x control' and the application runs on the page in the browser, just like a java application. To ...

django deployment issue with mod_wsgi

Hello I am trying to deploy my django project which is located at home/doga/headend/ and just to run it on the localhost (will be a LAN accessable project). My main problem is that I can use the site well however the /admin/ folder is giving me Internal Server Error error. anyway here is my etc/apache2/sites-available/default file <Vir...

Django deploying as SaaS (basecamp style)

Hi Djangonauts, I am almost done developing a Django project (with a few pluggable apps). I want to offer this project as a SaaS (something like basecamp). i.e: project1.mysaas.com , project2.mysaas.com etc I seek your expertise in showing me the path. Ways I have thought of are: 1 use Sites to define site specific settings.py 2 a...

.NET 3.5 Client Framework redistributable ?

It's nice from Microsoft to offer things like the Client Framework for anybody who doesn't need the complete framework to run an application. But for about an hour I a searching the web for a redistributable version of this package. I can't find anything. It looks like Client Framework is only possible for Click-Once deployment or a boo...

Is the SetUp.exe file unique for Deployment Package?

Someone asked me this today after a failed file move, and I was not sure what to tell them. When you build a .NET deployment package you get the setup.exe and the .msi files. I know that the .msi file is needed... but for the setup.exe, is that unique? Meaning, can we just move the .msi file and be fine, or do we need to keep the two to...

hardening drupal for a live deployment

Are there any special security measures to take when deploying a Drupal site to a production server? For instance: I can imaging that we need to remove install.php from the root directory. Are there any more actions? Or is there maybe a module available which checks the site for "world readiness" ...

Manual deployment from CruiseControl

I have CruiseControl.net set up to run MSBuild and NUnit on my web application and then deploy it to a staging server. Since NUnit doesn't have an Assert.IsNotUgly() method yet I need to look at the site on the staging server before deployment. What would be great would be to use Cruise Control to handle the deployment from the stagi...

Automating JBoss deployment in Eclipse?

I'm looking for a way to automate deployment of a Flex application(written in Eclipse) EAR to the JBoss application server. That is, when I click 'Build' I want it to also do the deployment. It doesn't have to be a 'hot' deployment, since this is development I don't care about shutting down and restarting the application. ...

How to auto execute a session bean's method on ear deployment?

I need a way to have a session bean's method executed periodically every week at a certain time. I am thinking of using the quartz scheduler to do this. My question is, how do I start the scheduler to run from the moment the .ear file is deployed automatically? Is there any annotation that I can use on the stateless session bean calling ...

ClickOnce error after delpoying -- has a different computed hash than specified in manifest.

Afer deploying my VSTO add-in with ClickOnce, I get the following error mesasge when trying to launch setup.exe: File, Addin.resources.dll, has a different computed hash than specified in manifest. Why is this happening? What can I do to fix this? ...

Deploying activex DLL via msi file results in red x in IE after user clicks trust.

I'm getting so so close to deploying my .Net dll user control in IE, somebody suggested trying to package it inside an msi file (instead of directly linking to the dll in the object tag) so that the user gets the trust prompts. So I followed the directions here: http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/8ddd0fd...