external install of multiple xml files through bash

2015-04-16 Thread Chris Clark
so i know i can do this.. java -jar ofbiz.jar -install -file=file.xml although that doesnt work on my system i get Exception in thread "main" org.ofbiz.base.start.StartupException: Couldn't not fetch config instance at org.ofbiz.base.start.Start.init(Start.java:202) at org.ofbiz.base.start.Start

Re: external install of multiple xml files through bash

2015-04-16 Thread Mike
Use this, modify to suit: root@srv01:/opt/ofbiz.import/bin# cat load_xml.sh #! /bin/bash if [ ! -f "$1" ]; then echo "ERROR: finding $1" exit fi #cd /opt/ofbiz ./ant run-install-file -Ddata-file=$1 On Thu, Apr 16, 2015 at 10:04 AM, Chris Clark wrote: > so i know i can do this.. > > j

Re: external install of multiple xml files through bash

2015-04-16 Thread Chris Clark
yeah i was hoping for something with the java command as i am going to try and run this as a service and my system doesnt, or should i say, didnt like ant when i was trying to make the ofbiz service... it does normally... just not in the service context Chris On Thu, Apr 16, 2015 at 12:42 PM, Mik

Re: external install of multiple xml files through bash

2015-04-16 Thread Mike
Maybe use a script (like the one I pasted), add the classpath, and have the service call the script instead of java directly. On Thu, Apr 16, 2015 at 10:55 AM, Chris Clark wrote: > yeah i was hoping for something with the java command as i am going to try > and run this as a service and my syste

Re: external install of multiple xml files through bash

2015-04-16 Thread Chris Clark
what would you put for the class paththis was the issue with the creation of the service, and what i did (and im sure this was like a band aid with a little staph in it, working at first but messing things up in the long run) was to find all the directories with classes in them under the ofbiz

Re: external install of multiple xml files through bash

2015-04-17 Thread Jacques Le Roux
With R13.07 use rather something like java -jar ofbiz.jar install -file=test.file "-install" was valid until R12.04, please refer to the wiki https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Technical+Production+Setup+Guide#ApacheOFBizTechnicalProductionSetupGuide-InitialDataLoadi

Re: external install of multiple xml files through bash

2015-04-17 Thread Chris Clark
awesome... thanks a lot i will give it a go...and can it do multiple files in a directory say java -jar ofbiz.jar install -file=/filestoimport/*.xml im actually working on yet another script to take all the xml files strip them of the two line header and one line footer, concatenate and then reap

Re: external install of multiple xml files through bash

2015-04-17 Thread Ron Wheeler
On 17/04/2015 9:40 AM, Chris Clark wrote: awesome... thanks a lot i will give it a go...and can it do multiple files in a directory say java -jar ofbiz.jar install -file=/filestoimport/*.xml im actually working on yet another script to take all the xml files strip them of the two line header an

Re: external install of multiple xml files through bash

2015-04-17 Thread Chris Clark
yeah ive already hammered out all the gawk scripts to output an xml document and a simple sed script will take care of removing the header/footer, and a simple cat headers strippedfiles footer command will combine them back into one...im solid on that part thanks anyhow im trying to wrap my head a