Closed GoogleCodeExporter closed 9 years ago
Try to use Java 6 instead of Java 7.
Original comment by frank.co...@gmail.com
on 1 Nov 2012 at 6:00
Hi,
With Java 6 it is the same issue. It seems to be a problem with the
FilenameUtils.normalize(String filename) function that normalizes with a '\' on
windows and with a '/' on Linux/Unix. The idPackageObjectReferenceUris always
contains links with a '/'. Maybe by using the normalize(String filename,
boolean unixSeparator) function this can be done by always using the
unixSeparator for comparisons...
Best regards,
Kristof
Original comment by kristof....@gmail.com
on 2 Nov 2012 at 10:36
You're right. This is a known problem. Never got fixed as we're not developing
on Windows.
Original comment by frank.co...@gmail.com
on 3 Nov 2012 at 4:58
Hi,
After changing the
FilenameUtils.normalize( string path )
commands in the OOXMLSignatureFacet.java and OOXMLSignatureVerifier.java files
to
FilenameUtils.separatorsToUnix(FilenameUtils.normalize( string path ))
the build succeeded on windows as well.
I have not read all documentation yet but if I understand correctly all server
side services should be compiled and tested on Linux and client side code can
be compiled and tested on all targetted platforms (Linux, Windows and OSX).
Original comment by kristof....@gmail.com
on 4 Nov 2012 at 8:05
Original comment by frank.co...@gmail.com
on 30 Nov 2012 at 3:00
http://code.google.com/p/eid-applet/source/detail?r=774
Original comment by frank.co...@gmail.com
on 29 Jul 2013 at 10:58
Original issue reported on code.google.com by
kristof....@gmail.com
on 31 Oct 2012 at 3:12