Questions tagged [openexi]

A Java & .Net library for reading and writing .EXI files, a binary optimized version of XML

Also known as Nagasena, written by Fujitsu, OpenEXI is a library for both the Java and .Net platforms for reading and writing EXI (Efficient Xml Interchange) files which are binary representations of XML.

5 questions
6
votes
5 answers

java sample for encoding/decoding EXI?

I'm looking for a Java sample program for encoding/decoding EXI (Efficient XML Interchange) streams, using either EXIficient or OpenEXI. Could someone help? I can't seem to find a sample app. edit: Alternatively, if someone could point me towards…
Jason S
  • 184,598
  • 164
  • 608
  • 970
2
votes
0 answers

EXI decoder using OpenEXI in C#/.NET

I cannot find out how to create an EXI decoder using C#/.NET which accepts a MemoryStream containing EXI valid code and simply outputs another MemoryStream containing XML code. I will parse XML code later with custom methods; I'm using EXI only to…
cxor
  • 21
  • 2
0
votes
1 answer

Using EXI: How to deal with large XML files (~ 20 GB)?

I am currently evaluating EXI to compress large XML files. Large means an XML file with 20 GB (twenty). Both EXI compression codecs and non-EXI compression codecs (gzip/lzma ) are integrated in a Scala application running on a Java virtual…
Beryllium
  • 12,808
  • 10
  • 56
  • 86
0
votes
1 answer

Using EXI: How to preserve comments?

I have tried to encode/decode an XML file using exificient-gui, but the comments contained in the original XML file are not preserved. I have used these settings: The resulting XML file (after encode/decode) does not contain the XML comments any…
Beryllium
  • 12,808
  • 10
  • 56
  • 86
0
votes
1 answer

Nagasena/OpenExi: encoding xml with < in attribute

I have implemented Nagasena encoder in C#: public byte[] encodeEXI(byte[] inBytes) { MemoryStream outStream = new MemoryStream(); MemoryStream inStream = new MemoryStream(inBytes); try { …
Tomas Blaho
  • 63
  • 1
  • 3