From: witek w. <ww...@To...> - 2007-04-02 14:05:27
|
We have not been using xmlbeansxx with IRIX. Can You please attach stacktrace or some output with error shown. witek wolejszo Bourlett, Michele wrote: > I am attempting to port xmlbeansxx to IRIX 6.5.27. I have successfully > run configure but when I run gmake am getting errors in the java code. > The Java jre and jdk versions we have installed are jdk1.4.1_06. The > version of xmlbeansxx source I am using is 0.7.3. > > > > > > Some of the errors are in the following code in > xmlbeansxx-0.7.3/generator/src/java/pl/touk/xmlbeansxx/ClassGen.java: > > > > public static SchemaTypeSystem loadTS(String name, List<String> > xsdFileNames) { > > ArrayList xsds = new ArrayList(); > > for (String xsd : xsdFileNames) > > xsds.add(new File(xsd)); > > //xsds.add(new File("b.xsd")); > > File[] xsdstab = new File[xsds.size()]; > > for (int i = 0; i < xsds.size(); i++) > > xsdstab[i] = (File) xsds.get(i); > > return TSLoader.loadTypeSystem(name, xsdstab, new File(".")); > > } > > > > Any help would be appreciated. > |