1

I have one installer with several packs. None is required. When I mark all, the installation completes with success.

When I mark just two packs, I get EOFException.

Edit

Using trace I can see the stacktrace:

Current focus owner: null.glassPane
java.io.EOFException
    at java.io.DataInputStream.readInt(Unknown Source)
    at java.io.ObjectInputStream$BlockDataInputStream.readInt(Unknown Source)
    at java.io.ObjectInputStream.readInt(Unknown Source)
    at com.izforge.izpack.installer.Unpacker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)

Edit 2

Found JIRA that is closed, but I'm using the 4.3.4 and get the error. Commenting the "pack200" works.

http://jira.codehaus.org/browse/IZPACK-395

LisaMM
  • 675
  • 1
  • 16
  • 28

1 Answers1

0

Add '-DTRACE=TRUE' in front of '-jar' of the installer call.

Refer to documentation section "logging install"

ring bearer
  • 20,383
  • 7
  • 59
  • 72
  • edit2 - `commenting the pack200 works` does that mean you got it solved? consider accepting answer if tracing option that you were looking for as part of original question helped you. This will improve your likeliness of getting further answers on stackoverflow. – ring bearer Aug 18 '11 at 01:16