Hi All. I have a Job Launching system on a server. It polls our database for any pending jobs then launches the appropriate console app when a job is available. The Job data is centrally managed in the database and is growing apace so now we have a second server to add to our job processing capacity.
This means the Job Launcher and e...
How we can define the term "deploy a package"?
Is correct to say that to deploy a package means to make a procedure
in which we create, put into a file system location and make them visible
to the compiler an VM with options like -classpath CLASSPATH etc????
...
Is there a way to preserve folder structure with MSTEST deployment?
I have a situation with some existing code where I have .config files in a subfolder (called "Configuration"). I can specify this folder using MSTEST deployment but, in it's infinite wisdom, MSTEST just copies the files from this folder to the run folder (TestResult\\O...
Hi,
I have an ASP .net Web Application already deployed on my local machine (virtual directory/IIS are configured). I used the Publish tool from Visual Studio. Now I want to move it to our Webserver (I have the IP adress and the appropriate credentials).
How should I do this?
EDIT
By the way, I'm asking because I don't know if there...
Hi All,
I'm a small developer that has never worked a major project before, & 99% of the asp.net solutions I've created are run off IIS on someone's desktop computer in a small office environment (yeah, yeah, I know).
Here's what's confusing me. When I develop a solution in VWD Express (2008 & 2010), I do so on my laptop and then copy...
I create some WSP Files on a build server every night and would like to automatically deploy them to a QA Environment.
In SharePoint 2007, there was no way to remote deploy WSP Files except for ugly psexec-workarounds.
Has this improved with SharePoint 2010? Can I utilize the PowerShell stuff somehow?
My build server is not Part of th...
Hi everyone,
We have a Tomcat cluster with two instances (version 5.5.25) running on a single machine. We use this to make sure our web page is available and that all sessions survive during redeployment.
We were wondering if sessions could be lost during this procedure. Here is what we do:
a) Application is running on tomcatA and t...
I'm just getting to grips with the NetBeans 6.9 / Glassfish 3 combo, and have developed a JEE app consisting of a WAR module and an EJB module. Having played around with the EJB side of things for a while, I went back to run the web code, and started having problems.
When I try to run the WAR file, it fails to deploy, and the error from...
I have a C# project that I am developing with Visual Studio and am deploying with Click-Once. There's nothing fancy about that.
However, I'm wondering if it's possible to include the intended deployment path within a config file or something else? I know that the last deployed URL is kept in the history of the project, but what if I wa...
Hi all,
I'm working on a new project that is in .net 3.5.
Currently the client is using stored procs and we would really like to use LINQ to SQL instead. The main reason they use stored procs is because they believe they are easier to update and such, they dont use any special permissions or such that I can see justify the use of store...
I have a batch file that will bounce a clickOnce app:
@REM The odd PING statements are to create a 5 second wait
@echo off
taskkill /F /IM MyApp.exe
PING 1.1.1.1 -n 1 -w 5000 >NUL
"%USERPROFILE%\Path\To\My\App.appref-ms"
This works fine when I double-click it: the process is killed and then restarted after 5 seconds.
However, if I s...
I have the code for a web application that's supposed to be set up in Tomcat, on my company's server. I work on this server by SSHing into it.
So I am in NetBeans 6.8 on Ubuntu 10.04, setting up a Java Web->New Web Project with Existing Sources. I can copy the code from the server onto my desktop when it asks for the location of the s...
I added a solution configuration called 'Staging'. It does show up on the drop down in VS, but not in the Configuration Manager in 'Package/Publish Web' screen. On this screen, the ones I see in the dropdown are:
Active (Release)
Debug
Release
All Configurations
I don't see Staging in here for me to package in the Staging mode
...
I'm hopefully going to be deploying an application soon, and I find it strange that I would have to include nunit.framework.dll. After all, the user is not going to need to run unit tests! So the only thing I can think of is that there is some way of configuring my solution for Debug and Release, such that Debug references NUnit, while...
I have a newbie question as it relates to EJBs. When we compose a web application, all the jsp's/servlets etc are organized/packed into a war file which is deployed on to the server, when it comes to session beans and their deployment, are they treated as container level components that dont belong to any individual application?
...
I want to use git for the deployment of a django project as I have done before, but this time it would also be necessary to have production files (like uploaded files, sql db etc) somewhere in the repository, so that you can locally work easily with the same data as on the server; my idea would be to have three branches:
master (on whi...
Hi,
I have a legacy delphi dll.
I created a class library that imports the dll and registered it for COM interop.
I have an experimental Silvelight 4 application that calls the COM object and it works. The problem is: how do I deploy the COM component (and dependent delphi dll) and register the COM object on a client machine?
...
The following link refers to making a major change to the application and changing the ProductCode. http://stackoverflow.com/questions/3024753/installing-a-new-version-of-a-deployment-project-over-old-version
Is it possible to easily (with Visual Studio) make a small change to an application and then without changing the ProductCode gui...
I want to automatically deploy a EAR file build in our continuous integration server to a websphere application server. I looked up the Ant task wsdeploy, but the documentation really isn't helpful at all. I added this to my ant script:
WSDeploy Ant task
<classpath>
<fileset dir="${dir.was.plugins}">
<include name="**/*.jar...
Hello
Just some pointers here.
I am making fairly extensive modifications to a site, including the MySQL database.
My plan is to do everything on my development server, export the new MySQL structure for the db and import it onto the clients server.
Basically I need to know that performing a structure only import will not overwrite/de...