deployment

how can I check which class/jar is causing “Cannot inherit from final class” during WAR deployment?

落花浮王杯 提交于 2019-12-12 19:18:23
问题 I'm deploying a WAR file to a Weblogic 12.1.2 server on Windows 7 (also tried Mac OS X). I'm getting an exception (see below). it looks like one of the classes is referring to an older/newer version of some parent class, which is coming from some duplicated jar. how can I find which class or jar file is causing it? my WAR file has a bunch of Jars in WEB-INF/lib... <Error> <Console> <BEA-240003> <Administration Console encountered the following error: weblogic.application.ModuleException: java

Missing “Deploy”-Button Visual Studio 2012

坚强是说给别人听的谎言 提交于 2019-12-12 18:24:14
问题 Yesterday I have installed Visual Studio 2012 Premium on my SharePoint 2013 Development Machine. I also installed the Office Developer Tools to get the SP2013 Project templates. Opening my SP 2010 Solution File and converting to 2013 was successful. My problem : There is no "Deploy"-Button in the Project-Context-Menu anymore. Everything is there: Build, Rebuild, Retract etc. But no Deploy . Asked this in the SharePoint Forum too 回答1: I had the same problem. I started by creating some

Deploy WCF web service on IIS

旧街凉风 提交于 2019-12-12 18:17:47
问题 I developed a WCF service which works fine at the machine for development. Now i want to deploy it on another server without VisualStudio, only with IIS and .Net framework installed. I want to confirm whether the following steps are correct or not: Pick WCF Files: web.config; Service.svc; and Bin foloder (Service.dll) Put WCF files in one IIS directory, and link to a vitual dir Browse it thanks! 回答1: I believe that should be sufficient. The simplest means of deploying (assuming permissions

I have made an installer for MyProgram but the uninstall shortcut that it creates leaves behind empty folders

半城伤御伤魂 提交于 2019-12-12 18:17:20
问题 I have created an installer for MyProgram using the Visual Studio Installer (Visual Studio Setup Project). It is called "MyProgram Setup.msi". It installs the program fine and if it is uninstalled using the Add/Remove Programs control panel then everything gets removed as it should. The problem is that I want to add a shortcut to the "User's Programs Menu" under the program shortcut called "Uninstall MyProgram". I have tried doing this in 3 different ways and in all 3 ways if MyProgram is

How to automate deployment of entity model changes to database?

情到浓时终转凉″ 提交于 2019-12-12 17:25:08
问题 Currently I use Visual Studio Database Project, so I can deploy changes to database with one click and keep data in database. Now I want to be able to create model in Entity Framework and deploy with one click. So I got sql script to create database from Entity Framework. I can run this script to create database, but I want to keep my data in database. Is there any way to do that ? Any tool that will do that ? Should I generate it on my own with T4 ? I use CI so I need to be able to deploy

how to deploy static subdomain + wildcard subdomain laravel app on live server?

霸气de小男生 提交于 2019-12-12 16:41:15
问题 In my laravel project app, I have the following routes. app.client.net for user registration and wildcard subdomain *.client.net for logged in users. Route.php <?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web"

Do I ever really need to use the Global Assembly Cache (GAC)?

送分小仙女□ 提交于 2019-12-12 16:31:28
问题 I've been building .NET web applications for many years now, and I never use the GAC? What am I missing? Or am I better off staying away from it? 回答1: The GAC is only useful if you register libraries which you're going to reuse. It is in no way obligatory to use to run a WebApp without shared libraries . 回答2: The GAC is mainly for storing shared libraries, especially when your application requires a specific version. This way, I could install FooLib 1.0 and FooLib 2.0 on the same machine, and

ClickOnce updates all files. Why?

本小妞迷上赌 提交于 2019-12-12 15:50:24
问题 I've got small wpf application deployed using ClickOnce technology. The problem is that when I build new version clients download all files, though many of these files have not been changed. I use following configuration to make deployment manifest <GenerateDeploymentManifest AssemblyName="MyApp.exe.application" AssemblyVersion="1.0.0.0" DeploymentUrl="\\...\MyApp.exe.application" Product="Egs.Client" TargetCulture="ru-RU" Description="My application" Publisher="MyCompany" Install="true"

Deploying a Rails app to a sub-URI with Passenger and Nginx?

若如初见. 提交于 2019-12-12 15:31:13
问题 I am already deployed my Rails app with Passenger and Nginx and it's working fine. Below is my servier configuration: server { listen 80; server_name localhost; location / { root /var/www/demo/public; passenger_enabled on; rails_env production; } Now I want to deploy a second app to a sub URI. Here the documentation is a little unclear. Could anyone please suggest me what will be the next configuration? Below is the configuration I am using for my second (Sinatra) application: location /log {

How can I decrease the Ionic Cordova Project Start duration ?

久未见 提交于 2019-12-12 13:37:10
问题 I made a ionic cordova project but after publishing to android mobile phone. The duration of our program is around 10-20 sec with respec to the mobile phone types. When I search this problem, people say that it is because of Splash Screen duration (Ionic splash screen not loading and Ionic2 performance issue) Path problem of any image 3rd Party libraries External CDN script libraries Lazy loading of pages I try to solve regarding above problems e.g. i removed 3rd party libraries or CDN based