10 Jul
2010
10 Jul
'10
3:58 p.m.
Hi All, The startjaxrx script doesn't add all the necessary jars to the classpath before starting BaseX. Changing it to the following worked for me.... #!/bin/bash # Script for running the JaxRx server # Path to this script PWD=`dirname $0` # Check: path to BaseX binary BXPATH=$PWD/BaseX61.jar # Classpath LIB=$PWD/lib CP=$PWD/BaseX61-jaxrx.jar:${BXPATH} for jar in ${LIB}/*.jar do CP=${CP}:${jar} done # Assign more memory VM=-Xmx1g # Run JaxRx java -cp "$CP:." $VM StartJaxRx -- ---- Andy Chambers Formedix Ltd