From: thomas at tada.se (Thomas Hallgren) Date: Tue, 10 Oct 2006 10:15:29 +0200 Subject: [Pljava-dev] Deployment Descriptor Problem In-Reply-To: <341b9b540610090818w1046f69ct664ca03d8c85dbab@mail.gmail.com> References: <341b9b540610061244h263a4476rd192479c475645ad@mail.gmail.com> <341b9b540610061248x222a42cg82fe7c15db14cb1b@mail.gmail.com> <4529EE42.2090207@logix-tt.com> <4529EFCC.3020309@logix-tt.com> <341b9b540610090818w1046f69ct664ca03d8c85dbab@mail.gmail.com> Message-ID: <452B56A1.7020102@tada.se> Joshua Ross wrote: > What isn't very good here is that the order in which the Name and > SQLJDeploymentDescriptor are listed. So I updated the manifest in the > file to be like this(including blank line at the end of the file): > ------------------------------------------------------------------------ > Manifest-Version: 1.0 > Created-By: 1.5.0_07 (Sun Microsystems Inc.) > Main-Class: VinDecoderTest > SQLJDeploymentDescriptor: TRUE > Name: deployment/VinDecoder.ddr > The order of your entries is wrong. The 'Name' entry must come before the entries that applies to that named entry (in this case the SQLJDeploymentDescriptor). The MANIFEST.MF suggested by Markus is correct: > > ---- > > Manifest-Version: 1.0 > > > > Name: deployment/examples.ddr > > SQLJDeploymentDescriptor: TRUE > > ---- > > Kind Regards, Thomas Hallgren