From: Wolfgang M. M. <wol...@us...> - 2004-07-22 08:31:26
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xmldb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv876/src/org/exist/xmldb Modified Files: RemoteIndexQueryService.java Log Message: Method reindexCollection throws ClassCastException: the xmlrpc method returns void. Index: RemoteIndexQueryService.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xmldb/RemoteIndexQueryService.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RemoteIndexQueryService.java 21 Jul 2004 05:46:22 -0000 1.7 --- RemoteIndexQueryService.java 22 Jul 2004 08:31:17 -0000 1.8 *************** *** 57,61 **** params.addElement(path); try { ! Vector result = (Vector) rpcClient.execute("reindexCollection", params); } catch (XmlRpcException e) { throw new XMLDBException( --- 57,61 ---- params.addElement(path); try { ! rpcClient.execute("reindexCollection", params); } catch (XmlRpcException e) { throw new XMLDBException( |