Re: How to specify Windows file path for gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"?

2017-12-27 Thread Aditya Sharma
Hi, I think relative path from the root should work. Try `gradlew "ofbiz --load-data file=/foo/bar/FileNameHere.xml" adding "/" at the beginning will point file from the root directory i.e. C: I guess. It works for Ubuntu. HTH Thanks and Regards, *Aditya Sharma* | Enterprise Software Engineer

Re: How to specify Windows file path for gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"?

2017-12-27 Thread Mike
Skip gradlew or ant by calling java directly. No sense loading a bunch of junk prior to loading. The below gets right down to business and just loads the XML. Here is an example, which may require tweaking for 16.x... The below is what I use for 13.04.

How to specify Windows file path for gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"?

2017-12-27 Thread Boyden, Timothy
How do you specify a Windows file path for command line command `gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"`? I put C:\SomePath\SomeFile.xml and the command errored with: Project 'ofbiz --load-data file=C' not found in root project 'ofbiz'. Thanks, Tim

Fwd: MODERATE for user@ofbiz.apache.org

2017-12-27 Thread Deepak Dixit
-- Forwarded message -- From: "krishna8...@gmail.com" To: Cc: Bcc: Date: Wed, 27 Dec 2017 15:06:39 - Subject: Re: [MODERATE EMAIL] Unable to access local ecommerce application Hi Michael, I don't see anything in the browser (in

Re: [MODERATE EMAIL] Unable to access local ecommerce application

2017-12-27 Thread krishna8...@gmail.com
Hi Deepak, Thanks for your response. It is not external tomcat. Its embedded tomcat from the downloaded bundle. As per the documentation (in the earlier provided link), 8080 is being used for e-commerce application. What do you mean by "8443 port is missing". As per documentation, I see 8443

RE: Data Load tips/tricks?

2017-12-27 Thread Boyden, Timothy
Thanks Taher and Nicolas. I'll check those out. -Tim -Original Message- From: Taher Alkhateeb [mailto:slidingfilame...@gmail.com] Sent: Wednesday, December 27, 2017 7:18 AM To: user@ofbiz.apache.org Subject: Re: Data Load tips/tricks? Hi Tim, My recommendation is to avoid using the

Re: Data Load tips/tricks?

2017-12-27 Thread Nicolas Malin
Disable eeca on your delegator like :     entity-group-reader="main" entity-eca-reader="main" *entity-eca-enabled="false"* distributed-cache-clear-enabled="false"> Nicolas Le 27/12/2017 à 13:06, Boyden, Timothy a écrit : I started writing scripts this week to export data from our current ERP

Re: Data Load tips/tricks?

2017-12-27 Thread Taher Alkhateeb
Hi Tim, My recommendation is to avoid using the web tools altogether, and instead using the CLI. The exact documentation for how to import from XML files is specified in the README.md. This has the benefit of not only reducing resource usage but also allows for automation instead of doing this

Data Load tips/tricks?

2017-12-27 Thread Boyden, Timothy
I started writing scripts this week to export data from our current ERP to the OFBiz XML data formats. I have loaded about 25,000 of our 150,000 products through the Web Tools Import XML utility. Are there any tips to improve load speed, such as temporarily disabling indexing or anything else