manifest

Set classpath in manifest.mf to access config files outside an executable jar.

I'm building an executable jar for a maven java project I have. It works great but I have a problem in that I want my config directory to live outside the jar so that I can change things easily if needed. I've got to the point where I have the jar being built without the config include and the the config directory is placed in the same ...

Altering DLL search path for static linked DLL

I've searched for any hints how I can do this, but all I found was how to redirect a SxS DLL to the local application folder. Here is what I want to accomplish: The (C++) Application.exe is linked to a DLL, Plugin.DLL (dependant project). This DLL is not placed inside the application directory, but in a subfolder called "plugins". As the...

Java: can't load applications.properties

Hello, I have a basic executable JAR with manifest.txt containg the MainClass and some other jar dependencies. I wanted to move my config file, "application.properties" outside the jar into a directory where it's easy to configure/maintain. The java code does a simple ResourceBundle.getBundle('application.props') to load it. I have a...

How to add assembly manifest to a C# .NET class library project in Visual Studio 2008?

I'm having a similar problem to what Paul had a year ago (see How to add manifest to a .NET DLL?). That is, I have a C# class library project in Visual Studio 2008, which outputs a dll. The dll references some private assemblies, so I want to add an assembly manifest to the dll that specifies those other referenced assemblies. I know ...

how to add arbitrary information in manifest from maven assembly plugin

Hi, i use the assembly plugin to create a uber jar from several maven artifacts. Now I like to add some company specific entries into the Manifest of the created assembly jar. But how ? the archive element doesnt allow arbitrary elements (or is there a way to add foobar: tutu inside the archive tag ?) also in addition with maven-jar...

Where is a .net Application Icon Stored?

I'm trying to figure out where my application's icon is stored in VS 2008. On the startup project's application properties, I added an icon with the setting "Embed manifest with default settings." I'd like to programatically display the icon in the application, but I can't figure out where the icon is being stored. How can I get a refe...

Making a vb.net application blend in with the Windows theme

Previously I used to piddle around with VB6 to develop a couple of personal projects. Following my upgrade to Windows 7, I've decided to piddle about with vb.net Express Edition 2010. If I wanted my VB6 application to blend in with the visual style of Windows, I would use the code and techniques described here. In short, I would use a M...

How can I use Scala's Manifest class to instantiate the erased class at runtime?

I'm doing some WebDriver+PageObject stuff. (If your not familiar with PageObjects, this is a pattern where you have a class representing each page on your site which exposes all the functions of the page using the domain language, hiding the HTML stuff from the test.) I want to be lazy and have one 'submit' method in my abstract Page c...

Android Manifest Problems

Whenever I run my program, I get this error: 10-11 17:53:12.135: ERROR/AndroidRuntime(403): at android.app.Instrumentation.newApplication(Instrumentation.java:957) 10-11 17:53:12.135: ERROR/AndroidRuntime(403): at android.app.Instrumentation.newApplication(Instrumentation.java:942) 10-11 17:53:12.135: ERROR/AndroidRuntime(403): ...

Android: Including multiple Java Packages to Manifest

The app I am developing has many activities organized into seven java packages. Originally I wrote all the coding and stuff for each group of activities in a java package as different projects. Now I'm at the point where I want to put all the packages together into one project. When I add a new package to the src folder, I get an error ...

How to run a process as current user privilege from an admin process

When a setup program(built by like Inno Setup) does launch a process, the process always be run as administrator privilege. -because setup program had been run as admin. I want to run the child process as current user's privilege. Is there a good way? ...

iPhone Cache Manifest Problem

Hi, I've been trying to setup a cache manifest for an iPhone WEB Application. I have included: <html manifest="speed.manifest"> However, something isn't working. I have configured easyPhp to deliver manifest with the mime.types file and also added AddType text/cache-manifest .manifest to the httpd.conf to try this also. It unfortunate...

Registration Free Com and dll manifests

I'm trying to setup registration free COM, but have a slight problem in that I another COM object may be the client. App.exe----->COM Server/Client dll(registered or not)-------->COM Server DLL (NOT Registered) My questions is, is it possible to create a manifest for the second dll (COM Server/Client dll)? I do not have control of the ...

How to see library name loaded with R6034 error?

I am getting R6034 error, but can't see the related library/executable since it's name is shortened (see the picture below). Is there any way I can see the full name? ...

Regarding 'singleton:=true' in Manifest file

I have a plugin which at present doesn't have any extension points (neither does it extend any other plugin). To resolve a certain issue I have to create an extension-point for this plugin and an appropriate extension somewhere else. When doing this eclipse forced me to set singleton:=true in the Manifest file. I know the reason why t...

why i don't have Microsoft.VC80.MFC-file?

Got a fresh Win7 machine with VS2005 installed. I tried to start a MyApp.exe that is built with manifest that says in Manifest.bin: ... <assemblyIdentity type="win32" name="Microsoft.VC80.MFC" version="8.0.50727.4053" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"> </assemblyIdentity> ... and the result was error mess...

c++/cli mixed mode dll force targeting an older version of CRT

Hello all, As the title says, this question is about targeting an older version of the C run time in my mixed-mode C++ dll. I realize that the proper way to do this would be use an older version of Visual c++ but for whatever reason, this is the correct route for us. The dll is built in Visual Studio 2008. Is there a version of the CR...

DialogBlocks on Windows: MSVCR80D.dll is missing

I build wxWidgets application with DialogBlocks on Windows 7 with VS2005 installed. Build is successful, but executable doesn't run giving the message: "The program can't start because MSVCR80D.dll is missing from your computer". The same code built in Visual Studio is OK. Build log: ----------------------- Configuration: VC++ Debug --...

How can I add a parameter to the manifest file HTML5 for offline mode?

Hello, I have a web application and I want to make it run offline as well. In this application I just have a form and I am using PHP for submitting it. I am using a manifest.php file like the one described in http://building-iphone-apps.labs.oreilly.com/ch06.html . The problem is that I need somehow to add the parameters from the form ...