Hello Some of the rmmci bridge test cases fail because the testCase use the equals method on node nodeA.equals(nodeB). The resaon this fails is that the Node interface doesn't define the equals method and therefore no wrapper is generated for those methods. If the method is defined (like in org.mmbase.storage.search.SearchQuery or java.util.List) rmmci has no problem.
The question is where should I fix the problem -in the bridge bij adding the methods -in the ClassToXML (used by the rmmci ) so that those methods are always wrapped -in the test case nodeA.getNumber() == nodeB.getNumber();
