Re: importing a csv file into a wonder application

2015-04-16 Thread Kevin @ alchemy POP
Thanks! That should do the trick. Kevin Spake Alchemy Billing LLC 916-397-9953: Phone 866-594-0847: Fax IMPORTANT WARNING: This message is intended for the use of the person or entity to which it is addressed and may contain information that is priviledged and confidential, the disclosure of

Re: Dinosaur land vs Yosemite and Apache

2015-04-16 Thread Fabian Peters
Hi Ken, I finally switched last weekend. Benjamin Chew thankfully provided a binary woadaptor: >> Sorry for the confusion, the mailing list didn't like attachments over 300k >> and did not distribute my email below. >> >> Here is a link to the binary: >> https://www.dropbox.com/s/zxdbp1wbfx4uy

Dinosaur land vs Yosemite and Apache

2015-04-16 Thread Ken Anderson
All, Well, Xcode 6.3 requires Yosemite, so I’m going to have to go kicking and screaming. How is everyone dealing with Apache in Yosemite? I remember a lot of chatter about it a while back, but not sure where everything has settled. Steve Quirk has built a script to convert the config to mod

405 Error.

2015-04-16 Thread ThirumalaReddy Vaka
Dear All, We are getting 405 Error while calling the Restful service (ERRest) from AJAX. Is this problem with CROSS-DOMAIN ? Please help us to solve this problem. *Thanks & Regards,* *Thirumala Reddy Vaka.* ___ Do not post admin requests to the list.

Re: importing a csv file into a wonder application

2015-04-16 Thread Fabian Peters
Hi Kevin, My CSV importers use something like this: Scanner scanner = new Scanner(new FileInputStream(importFile), "UTF-8"); try { // first use a Scanner to get each line Integer lineNumber = 0; while (scanner.hasNextLine()) { St