Probably this is very noobish mistake, but can anyone try to reproduce my steps & check for errors?
I'm using Linux Mint 15. I've downloaded doc2x (binary->openxml msword converter) from here : https://sourceforge.net/project/downloading.php?group_id=216787&filename=doc2x_r649.tar.gz&a=13775724
Untar'ed it with tar -xzf doc2x_r649.tar.gz
The archive contains binaries, should be Mono compatible.
I've got mono v2.0 & mono v4.0 profiles installed.
Any attempt to make a conversion throws an error :
2/23/2014 9:00:25 PM [D] System.DllNotFoundException: zlibwapi.dll
at (wrapper managed-to-native) DIaLOGIKa.b2xtranslator.ZipUtils.ZipLib:zipOpen (string,int)
at DIaLOGIKa.b2xtranslator.ZipUtils.ZlibZipWriter..ctor (System.String path) [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) DIaLOGIKa.b2xtranslator.ZipUtils.ZlibZipWriter:.ctor (string)
at DIaLOGIKa.b2xtranslator.ZipUtils.ZipFactory.CreateArchive (System.String path) [0x00000] in <filename unknown>:0
at DIaLOGIKa.b2xtranslator.OpenXmlLib.OpenXmlWriter.Open (System.String fileName) [0x00000] in <filename unknown>:0
at DIaLOGIKa.b2xtranslator.OpenXmlLib.OpenXmlPackage.Close () [0x00000] in <filename unknown>:0
at DIaLOGIKa.b2xtranslator.OpenXmlLib.OpenXmlPackage.Dispose () [0x00000] in <filename unknown>:0
at DIaLOGIKa.b2xtranslator.WordprocessingMLMapping.Converter.Convert(DIaLOGIKa.b2xtranslator.DocFileFormat.WordDocument doc, DIaLOGIKa.b2xtranslator.OpenXmlLib.WordprocessingML.WordprocessingDocument docx) [0x00000] in <filename unknown>:0
at DIaLOGIKa.b2xtranslator.doc2x.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0
I think the problem lies in first line "2/23/2014 9:00:25 PM [D] System.DllNotFoundException: zlibwapi.dll". zlibwapi.dll is located in converter's directory. I've tried copying it into several locations (typically used by libraries) but no luck. I've read that Mono is looking for libraries at current directory in the first place, so there should be no problem.
How to get it to work? Thanks in advance!