If so, it doesn’t look like Tika has support for it - but you
may want to file a request at https://issues.apache.org/jira/browse/TIKA requesting support and maybe someone will consider it.
In addition if you find an ALv2 compatible [1] licensed parser
in Java and it works well please consider letting folks know on
the JIRA issue and/or submitting it upstream to Tika by wrapping
it using Tika’s Parser interface [2].
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mil...@googlegroups.com, <dev@tika.apache.org>
Alex
We have been developing an open source scala (Runs on a JVM ) based generic parser called daffodil that uses the dfdl specification. Works great from Java apps.
Google " daffodil dfdl" . Located at the NCSA link.
We have generated dfdl schemas for USMTF and VMF messages. They are on www.forge.mil - I can send url if interested.
Boyd
Brad Hards
unread,
Mar 21, 2015, 6:21:47 PM3/21/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
Given the mailing list, probably "Variable Message Format" - MIL-STD-6017 (and
some underlying transports that kill interoperability but probably don't make
much difference once you've got the VMF-level bits).
IIRC, the spec is not Distribution Statement A, so it'll be hard to find a FOSS
implementation. So a forge.mil solution (like Boyd's suggestion) is probably
the best bet.
Brad
Boyd Fletcher
unread,
Mar 21, 2015, 8:21:24 PM3/21/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mil...@googlegroups.com, Chris Mattmann
In our case, the daffodil parser is completely open source. It can process a very wide variety of fixed format ascii, Unicode and binary data. We have written parse tables USMTF , various CSV-like file types, VMF, pcap, and we are working dfdl schemas for CEF, IPFIX/Netflow, and silk data types. You can even parse JPEG with DFDL.
Because usmtf and VMF are fouo specs we had to post the dfdl schemas on forge.mil
Btw, the data format description language (DFDL) is an open spec from the open grid forum.
We have also integrated daffodil with the open source calabash xproc engine so you can use XML technologies to validate and transform the data that was parsed by daffodil. It's pretty cool technology.
IBM has developed Java and C DFDL parsers for their message broker 8.
Boyd
Jack Gold
unread,
Mar 22, 2015, 4:35:18 AM3/22/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mil...@googlegroups.com, Chris Mattmann
I recall in the past some company produced libraries for such things. I know my company builds them in house. Very likely Brad is correct. MIL-STD-6017 for "Variable Message Format" is most probably what you are looking at. There are multiple releases of the standard and they are not all available outside US FOUO. Some are NATO only. Additionally, there are new replacement standards in the works for this protocol.
I also believe there is a such a library floating around on NIPR, though I have no access to that these days.
--Jack
Alex O'Ree
unread,
Mar 22, 2015, 11:48:25 AM3/22/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mil...@googlegroups.com, Chris Mattmann
Yes I was looking for a 6017 library, specifically something that's android friendly. Android doesn't like anything javax.xml related (JAXB or otherwise). Thanks everyone for the replies