Reputation: 11
I am trying to read .SEF files such as this https://github.com/freight-trust/xsef/blob/9d33443947ed0972d0db498c415feff467df5496/libsef/edifact/COARRI_D95B.EVAL0.SEF. No matter what I try, I can only come up with gibberish like:
ù[-…—´uËhcËi¿[G©Ð»q9ÜõðaM#æƒ)r·ª¾
I tried reading the file with Notepad++ and with format-hex in PowerShell, but neither gives me what I suppose it should look like (an EDIFACT file, something like "DTM+120345:102'MOA+5:203+USD'" or similar). Does someone have ideas on what I should try to do, or how to open files like this in a readable format? Thank you in advance.
Edit: P. S. If you know how to do this, can you guide me through on how it actually should be done? I mainly use PHP and some Java, but any language is fine for this problem.
Upvotes: 1
Views: 481
Reputation: 2913
I've been there before myself. At first, reading your post I thought "Oh great, more of these unreadable SEF files!". If you look at the file extension you'll see they are EVAL0.SEF files and these files are unfortunately encrypted and only work with their evaluation software, such as SEF Reader and SEF Manager (maybe more).
Here on this page: https://www.edidev.com/eval_SefFile.html you can see the (are they the same files?) similar files. While on https://www.edidev.com you'll find more information and this explanation somewhere:
SEF files for evaluation are in a secured format which only works with the evaluation version of Framework EDI.
Back to the original question:
I am trying to read .SEF files such ...
If all you need is reading them, you can install their evaluation copy. But I have a hunch that reading these files was only the beginning for you. For what comes after, I would avoid "EVAL0" files, you won't be able to use them in the true context of SEF.
Upvotes: 1