deployment

JBoss5: Cannot deploy due to java.util.zip.ZipException: error in opening zip file

爷,独闯天下 提交于 2019-12-17 10:54:37
问题 I have a web client and a EJB project, which I created with Eclipse 3.4. When I want to deploy it on Jboss 5.0.1, I receive the error below. I searched a lot but I wasn't able to find a solution to this. 18:21:21,899 INFO [ServerImpl] Starting JBoss (Microcontainer)... 18:21:21,900 INFO [ServerImpl] Release ID: JBoss [Morpheus] 5.0.1.GA (build: SVNTag=JBoss_5_0_1_GA date=200902231221) 18:21:21,900 INFO [ServerImpl] Bootstrap URL: null 18:21:21,900 INFO [ServerImpl] Home Dir: /Applications

Embedding/deploying custom font in .NET app

喜欢而已 提交于 2019-12-17 10:50:26
问题 Is there an official way to distribute (deploy) a specific font with a .NET application? We have a (public domain) "LED font" that prints numbers with the retro LED instrumentface look. This is a standard True Type or Open Type font like any other except it looks funky. Obviously for that to work, this font needs to be on the user's machine. But we'd prefer to not force the user to "install our special font into your font folder". We'd prefer to either load a Font object directly from the TTF

Angular 2 Ahead-of-Time compiler: must I make all class properties public?

夙愿已清 提交于 2019-12-17 10:49:29
问题 Angular 2 rc 6 , typescript 2 , node 4.5.0 , npm 2.15.9 on Windows 7 I'm trying to move from Just-in-Time to Ahead-of-Time compilation and I'm relying on these resources: Angular 2 - Ahead-of-time compilation how to https://github.com/angular/angular/tree/master/modules/@angular/compiler-cli#angular-template-compiler I understand that I need to run the compiler ngc to generate ngfactory.ts files, and that I need to change main.ts to use platformBrowser instead of platformBrowserDynamic to

Unable to find the requested .Net Framework Data Provider - SQLite

℡╲_俬逩灬. 提交于 2019-12-17 10:48:58
问题 I thought that sqlite was simple but it is giving me a hard time. I just want to create an application where I can connect to a sqlite database using the ado.net entity data classes. I am having this problem when testing the application on a virtual computer running windows xp. the application works fine on my current computer and also on my laptop when I deploy them. Here is what happens on the virtual computer : The application is able to launch. The application is able to interact with the

Merge msi and exe

本小妞迷上赌 提交于 2019-12-17 10:29:10
问题 My deployment project creates and .msi-file and an .exe-file. Is it possible to merge these into one .exe? 回答1: Yes, you can create a self-extracting installer containing both MSI and the setup.exe bootstrapper file. I think it is possible to do that with WinZip, or you can use IExpress coming with Windows. Here is a guide how to create a self-extracting executable with IExpress. You can either use the IExpress wizard or manually write a config file which you then can execute in the post

How to deploy an Electron app as an executable or installable in Windows?

末鹿安然 提交于 2019-12-17 10:19:21
问题 I want to generate a unique .exe file to execute the app or a .msi to install the application. How to do that? 回答1: You can package your program using electron-packager and then build a single setup EXE file using InnoSetup. 回答2: You can also try with the electron-boilerplate. Which has 'release' task of gulp and it will create single ready to go executable file for all cross platform. You only need to build application from all three platform to generate particular platform executable.So you

Disabled Java warning appearance & affect on Java Web Start apps

余生颓废 提交于 2019-12-17 10:07:00
问题 Recently security vulnerabilities were discovered in the Java Plug-In 1 . As a protection for the end user, Java in most browsers was disabled promptly. What do the 'Java disabled' warnings look like? Does the blocking of applets also affect Java Web Start apps. (they are launched from a link in a web page) aimed at desktop use? Security vulnerability in the Oracle Java Plug-In. For more details see: The JRE 1.7 Vulnerability Q&A at SO. Oracle Security Alert for CVE-2013-0422 The Java™ SE

Does an R compiler to C/C++ exist?

人盡茶涼 提交于 2019-12-17 08:24:35
问题 I'm wondering about the best way to deploy R. Matlab has the "matlab compiler" (MCR). There has been discussion about something similar in the past for R that would compile R into C or C++. Does anyone have any experience with the R to C Compiler (RCC) that was developed by John Garvin at Rice? I've looked into it, and it seems to be the only project that worked on compiling R code into executable code. And as far as I can tell, it isn't still being used. [Edit 1:] : To be clear, I know that

Create Windows Installer for Java Programs

别来无恙 提交于 2019-12-17 08:23:51
问题 This question was migrated from Software Engineering Stack Exchange because it can be answered on Stack Overflow. Migrated 8 years ago . I'm a Java beginner. I already created a simple GUI application that display will "hello world" label. But, how can I create an installer from .java or .jar for windows. Let's say that I have created a useful application and want to share it with my friends to install it in their PC without they need to know what is JRE, or how to download JRE. 回答1: Deploy

How to deploy a JAX-RS application?

我的梦境 提交于 2019-12-17 08:16:31
问题 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 parameter named: javax.ws.rs.Application Again, what is "a servlet" here? If an Application subclass is present that is not being handled by an existing servlet then the servlet