PDA

View Full Version : Problem using LDMWriter


ncoles@ikonscience.com
06-16-2010, 04:23 PM
I have just installed OIV8 for Java and I am trying to use soLDMWriter to create LDM files from our custom data format.

When I try to create an instance of an LDMWriter I get the following error ;

java.lang.UnsatisfiedLinkError: com.mc.ldm.converters.SoLDMWriter.constructor()J

I'm assuming this indicates an installation problem but any suggestions on how to find out what and fix it????

Cheers,

Neal

mikeheck
06-21-2010, 05:54 PM
When I try to create an instance of an LDMWriter I get the following error ;
java.lang.UnsatisfiedLinkError: com.mc.ldm.converters.SoLDMWriter.constructor()J


We are not aware of any problem like this. Could you send a small test case that reproduces the problem?
Thanks,
Mike

ncoles@ikonscience.com
06-21-2010, 07:48 PM
The code that produces the error is simply :

SoLDMWriter writer = new SoLDMWriter();

I can produce a full example tomorrow.

Neal

ncoles@ikonscience.com
07-02-2010, 02:31 PM
package Test;

import com.mc.ldm.converters.*;

public class Test
{
public static void main(String[] args)
{
SoLDMWriter writer = new SoLDMWriter();
}
}