A manifest is a file containing metadata about an application, data file or assembly.
35
votes
2answers
2k views
What is a Manifest in Scala and when do you need it?
Since Scala 2.7.2 there is something called Manifest which is a workaround for Java's type erasure.
But how does Manifest work exactly and why / when do you need to use it?
This blog post by Jorge ...
30
votes
3answers
13k views
Generate manifest files for registration-free COM
I have some applications (some native, some .NET) which use manifest files so that they can be deployed in complete isolation, without requiring any global COM registration. For example, the ...
18
votes
4answers
4k views
Working with Visual Studios C++ manifest files
I have written some code that makes use of an open source library to do some of the heavy lifting. This work was done in linux, with unit tests and cmake to help with porting it to windows. There is a ...
17
votes
8answers
7k views
Executable war file that starts jetty without maven
I'm trying to make an "executable" war file (java -jar myWarFile.war) that will start up a jetty webserver that hosts the webapp contained in the war file I executed.
I found a page that described ...
14
votes
6answers
88k views
Why it's failed to load main-class manifest attribute from jar-file?
I have created a jar file in this way jar cf jar-file input-files. Now I try to run it. This does not work: jre -cp app.jar MainClass (jre command is not found). This java -jar main.jar also does not ...
13
votes
2answers
3k views
How does Scala's (2.8) Manifest work?
I have some Scala code that makes fairly heavy use of generics, and I have gleaned from the docs that using a manifest in the parametrization constraints can help me work around the type erasure ...
12
votes
2answers
3k views
Program Compatibility Assistant thinks my app is an installer
I have created a .NET C# WinForms application on Win 7 RTM x64, which let's say I have called DataInstaller.
When I run this program outside of the debugger (just an empty form with no functionality ...
12
votes
7answers
8k views
C#: What does MissingManifestResourceException mean and how to fix it?
The situation:
I have a class library, called RT.Servers, containing a few resources (of type byte[], but I don't think that's important)
The same class library contains a method which returns one ...
11
votes
2answers
2k views
Maven: Packaging dependencies alongside project JAR?
I've like Maven to package a project with run-time dependencies. I expect it to create a JAR file with the following manifest:
.....
Main-Class : com.acme.MainClass
Class-Path : lib/dependency1.jar ...
11
votes
5answers
13k views
Command line tool to dump Windows DLL version?
I need a command line tool to dump standard Windows DLL version info so I can process it by means of a bash script (Cygwin).
As a Java developer I am not very used to Microsoft development tools ...
10
votes
3answers
2k views
Can I clear a webapp in Chrome?
I've written a webapp that has a manifest that includes all the javascript and images that it requires. Unfortunately, even when I change the manifest file, it doesn't seem to reload the javascript.
...
10
votes
4answers
11k views
Generate manifest class-path from <classpath> in ant
In the build file below, the jar target refers to the jar.class.path property for the manifest class-path. The compile target refers to project.class.path
There is redundancy here, because ...
10
votes
12answers
15k views
Producing executable jar in NetBeans
I'm using NetBeans 6.5 and for some reason it won't produce executable jar "out of the box".
I set my project to be the main project, defined main class in the project properties "run" menu and it ...
9
votes
1answer
673 views
error MSB3171: Problem generating manifest
C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(2341,9): error MSB3171: Problem generating manifest. Could not load file or assembly '...CppCli.dll.manifest' or one of its ...
9
votes
1answer
736 views
Can't get simple html5 manifest cache to work!
I'm trying to get a simple html5 webcache to work.
This is my one and only html page, index.html:
<!DOCTYPE HTML>
<html manifest="./main.manifest">
<body>
...
8
votes
3answers
464 views
Android icon vs logo
The tag for the Android Manifest contains a logo attribute (http://developer.android.com/guide/topics/manifest/application-element.html#logo) which I have never seen before. What is the difference ...
8
votes
1answer
427 views
Embedding build time into JAR Manifest using Ant
If I want to embed the current time in JAR manifest using ant is there an ant property I can use for "now" and which manifest attribute is the best to put this information?
I currently have the ...
8
votes
3answers
2k views
Updating a Safari Extension?
I'm writing a simple Safari Extension, and I'm trying to figure out how to get the update mechanism working. Apple's documentation here is delightfully vague:
...
8
votes
4answers
9k views
Tab Layout tutorial incomplete?
I've been trying to implement the tab UI described in this tutorial: http://developer.android.com/intl/de/resources/tutorials/views/hello-tabwidget.html
I follow all the steps described in the ...
8
votes
1answer
3k views
How do I add an Implementation-Version value to a jar manifest using Maven?
I'd like to add an Implementation-Version line to a manifest in my jar file that reflects the POM version number. I can't for the life of me work out how to do this using the jar plugin.
Is this ...
8
votes
5answers
13k views
How do I read the manifest file for a webapp running in apache tomcat?
I have a webapp which contains a manifest file, in which I write the current version of my application during an ant build task. The manifest file is created correctly, but when I try to read it in ...
8
votes
5answers
17k views
Error: The Side-by-Side configuration information in “BLAH.EXE” contains errors
This is the error Dependency Walker gives me on an executable that I am building with VC++ 2005 Express Edition. When trying to run the .exe, I get:
This application has failed to start because the ...
7
votes
1answer
2k views
HTML5 manifest and chrome
I am seeing this error in my console for chrome.
Application Cache Error event: Failed to commit new cache to storage, would exceed quota
it means what it seems to mean right? That my app is ...
7
votes
1answer
808 views
are delphi 2010 programs capable of tackling vista/win7 UAC by default
if you compile a program in D2010 a manifest .res file is automatically generated. is it included in your program by default? or you have to include it yourself?if yes what level of privilage is given ...
7
votes
4answers
4k views
Embedding an application manifest into a VB6 exe
I have recently gone through a bunch of standalone utility apps written in VB6 to make sure that registry virtualization is turned off for Windows Vista and above. I created a standalone manifest file ...
7
votes
6answers
8k views
reading an application's manifest file?
Is there an easy way to read an application's already embedded manifest file?
I was thinking along the lines of an alternate data stream?
6
votes
2answers
129 views
Scala - obtaining a class object from a generic type
Is it possible to create a Class object purely from a generic parameter? For example:
class myclass[T] {
def something(): Class[_ <: T] =
classOf[T] //this doesn't work
}
Since the type ...
6
votes
2answers
520 views
Uncheck “Enable Runtime Themes” or remove the internal manifest in Delphi XE?
I have a component that I am building that I want to be used in the following way:
User creates a new blank project.
User drops my component on the form.
Some special Designtime code in my component ...
6
votes
1answer
122 views
Application manifest schema
Is there any documentation which describes all the valid elements for a Windows application manifest, which namespace they are in, and which Windows versions will use them? All the documentation I ...
6
votes
1answer
277 views
What are the limitations of Scala's Manifests?
Scala's Manifests are a way to get around some type erasure problems due to the JVM's lack of reified generics.
They are discussed in several other questions; here are a few:
What is a Manifest in ...
6
votes
2answers
370 views
Is there a way to use a CDN (for jQuery) and have an offline Web app (via HTML5 manifests)?
I'm beginning to look at HTML5s ability to allow for offline Web applications.
A while back I found that using a CDN worked well for my applications, so I've been sticking with them, mostly just for ...
6
votes
2answers
2k views
LoadLibrary() fails to load DLL with manifest and private assembly
I am working on a Windows application (EXE) that uses multiple DLLs. Development is in VCExpress 2005 (VC 8.0), using C only.
Some of these DLLs are plug-ins/add-ons/extensions that are dynamically ...
6
votes
3answers
1k views
Can values defined in MANIFEST.MF be accessed programmatically?
Can I access the values defined in a java manifest from code?
6
votes
3answers
2k views
How to automatically set Version Info in Delphi?
I would like to have my CodeGear Delphi 2007 project to automatically set the debug module attributes depending on whether my project is in debug or release mode.
I can manually set this value by ...
6
votes
3answers
3k views
UAC need for console application
I have a console application that require to use some code that need administrator level. I have read that I need to add a Manifest file myprogram.exe.manifest that look like that :
<?xml ...
6
votes
4answers
6k views
How to move a ClickOnce deployment package
I have a collection of clickOnce packages in a publish folder on a network drive and need to move them all to another server (our DR machine).
After copy/pasting the whole directory and running the ...
5
votes
1answer
353 views
HTML5 appcache with Safari causing cross site css not to load
I have run into an issue with one of my webpages that was changed to use the HTML5 appcache feature. Safari is blocking my cross site css files when the appcache is enabled on a page. The page, ...
5
votes
6answers
2k views
HTML5 Cache manifest in an “added to homescreen” mobile webapp doesn't seem to work
Im' working on a mobile webapp that connects to an online database, loads data from that database in an offline local mysqlite database, and should then be available offline.
I got the whole database ...
5
votes
4answers
359 views
Application signing/verification
I'm relatively new to Windows development, but have just finished a small project. I want to make my application "verified" like a lot of other applications are. For example, when you launch the ...
5
votes
2answers
294 views
Can different versions of DLL be loaded in same application?
My application uses one version of library (a.dll), I am using another DLL(b.dll) which in-turn uses older version of the same library (a.dll) that i use. I am building the application by embedding a ...
5
votes
1answer
191 views
Automate adding multiple “sections” to the manifest?
I'm using ant to generate the MANIFEST.MF for a .jar, and I need to add multiple manifest <section> blocks based on a list of files in a directory. However, I need to automate the process to do ...
5
votes
4answers
3k views
Delphi app manifest file problems under WinXP and Win7
My last question "List service and services status under Win-7" made me start working on a solution that gives my app the admin privileges under Windows Vista onward based on a .manifest file.
I was ...
5
votes
3answers
2k views
How do I resolve a permission error installing a custom built gem?
I'm attempting to build my first ruby gem and all seemed to go well until I attempted to install the gem. I'm using RVM so no need for 'sudo gem install' here.
First I attempted to do the following:
...
5
votes
3answers
843 views
Dll loaded twice with Dll redirection through manifest
I'm including python.h in my VC++ dll project which causes an implicit linking with python25.dll.
However I want to load a specific python25.dll (several can be present on the computer) so I created a ...
5
votes
2answers
3k views
Visual Studio 2005 security updates and CRT DLL versions in manifest
Recent Visual Studio 2005 security updates may be causing problems for us.
We build and internally distribute SDKs written in C++. These SDKs are a collection of header files and static libraries ...
5
votes
2answers
3k views
maven-assembly-plugin
I'm trying to add a classpath to the jar generated by the maven-assembly-plugin. The assembly bulids, except the manifest has no classpath. Below is my configuration. Any help would be appreciated. ...
5
votes
1answer
783 views
About Manifest file
Recently, I encountered a very strange issue, this issue only happens in XP SP3 and Vista. Here is my steps:
List item
Create two new folders in desktop(assume folder names are A and B)
Copy ...
4
votes
1answer
80 views
Where appears android:description label from your manifest?
android:label parameter is displayed just under your icon on the home screen, but I can't see where the android:description label is displayed on the phone (Home screen, Applications Settings menu,... ...
4
votes
3answers
79 views
Forcing Windows to load DLL's at places so that memory is minimally fragmented
My application needs lots of memory and big data structure in order to perform its work.
Often the application needs more than 1 GB of memory, and in some cases my customers really need to use the ...
4
votes
1answer
45 views
Is it possible to include/import code to the Android Manifest?
I am working on a package for other android applications to use, and when they import the .jar, they also need to add a reasonable chunk of permissions and such to the android manifest.
Is it ...