Re: ERXExistsQualifier

2015-04-26 Thread David Avendasora
On Apr 26, 2015, at 3:53 AM, Paul Hoadley pa...@logicsquad.net wrote: I actually named my qualifier ERXQualifierExistsSubquery as it is a peer of ERXQualifierInSubquery. My plan is to deprecate ERXExistsQualifier as I think the re-implementation of the in subquery functionality in

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread Ken Anderson
AWESOME!! On Apr 26, 2015, at 11:31 AM, David Avendasora webobje...@avendasora.com wrote: I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse 4.4 (Luna) is

Re: wotaskd on Yosemite

2015-04-26 Thread Ken Anderson
ok - progress! For some reason, the upgrade to Yosemite got rid of the linked file to the conf file in the adaptors directory. I didn’t notice until now. When modWebobjects wasn’t loading, I just added it to the load modules of the main httpd.conf, not thinking that everything else was

WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread David Avendasora
I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse 4.4 (Luna) is now successfully building on the WOCommunity Jenkins server! The Eclipse update site for Eclipse 4.4

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread Hugi Thordarson
You guys rock! - hugi On 26. apr. 2015, at 15:31, David Avendasora webobje...@avendasora.com wrote: I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse

Re: wotaskd on Yosemite

2015-04-26 Thread Ken Anderson
Nevermind - all good now. The /Library/WebObjects/Logs directory was not write-able by appserver, and was clearly pissing everything off. Thanks for everyones help! Ken On Apr 26, 2015, at 12:45 PM, Ken Anderson kenli...@anderhome.com wrote: ok - progress! For some reason, the upgrade

Re: wotaskd on Yosemite

2015-04-26 Thread Bogdan Zlatanov
It might be a good idea to check the apache error logs for any problems with mod_WebObjects On 26/04/2015 14:44, Ken Anderson wrote: Thanks Pascal. Yes, WebObjects_module (shared) appears with httpd -M, and the only place cgi-bin appears is: IfModule alias_module ScriptAliasMatch

Re: wotaskd on Yosemite

2015-04-26 Thread Ken Anderson
Thanks Markus. Unfortunately, I’ve worked backwards and seem to have more issues than I thought. I can run wotaskd manually, but I still can’t connect to a WOApp. I have apache 2.4 running and loading mod_WebObjects. I can access other things through Apache (like a website built with a

Re: wotaskd on Yosemite

2015-04-26 Thread Ken Anderson
Thanks Pascal. Yes, WebObjects_module (shared) appears with httpd -M, and the only place cgi-bin appears is: IfModule alias_module ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) /Library/WebServer/CGI-Executables/$1” /IfModule On Apr 26, 2015, at 8:40 AM, Pascal Robert

Re: wotaskd on Yosemite

2015-04-26 Thread Pascal Robert
That sounds like a ScriptAlias directive problem. Do: httpd -M And check for the presence of mod_WebObjects. If it’s there, search for « cgi-bin » in Apache’s config files, you probably have a config that says that anything starting with /cgi-bin will be handled by a specific directory.

Re: wotaskd on Yosemite

2015-04-26 Thread Ken Anderson
Unfortunately, no errors related to mod_Webobjects. Plus, httpd -M shows it loaded. On Apr 26, 2015, at 8:47 AM, Bogdan Zlatanov bogdan.zlata...@gmail.com wrote: It might be a good idea to check the apache error logs for any problems with mod_WebObjects On 26/04/2015 14:44, Ken

Re: wotaskd on Yosemite

2015-04-26 Thread Gavin Eadie
Excuse my slightly intemperate response to this, directed as much to myself as anyone else, but this problem keeps arising year after year and there is absolutely no reason why wotaskd (or any other woapp) shouldn’t detect that it can’t write to its Log/ directory and either report that fact

Creating the perfect error page

2015-04-26 Thread Hugi Thordarson
Hi all. The standard WO exception page is starting to show its age and I think it’s high time we improve it. I started a new error page today and added the capability to show the code that’s throwing the error (a feature of some of the younger web frameworks that I like) but I’d love to hear

Re: Creating the perfect error page

2015-04-26 Thread Hugi Thordarson
You'd never put that in a _production_ release though, would you? Looks perfect for development, but in production I'd prefer my exception views to be pretty generic with a non-technical message, unless the app is for internal staff. So, er, that's what we do. Yeah, I would not want

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread Paul Hoadley
On 27 Apr 2015, at 1:01 am, David Avendasora webobje...@avendasora.com wrote: I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse 4.4 (Luna) is now successfully

Re: Creating the perfect error page

2015-04-26 Thread Paul Hoadley
On 27 Apr 2015, at 7:09 am, Hugi Thordarson h...@karlmenn.is wrote: The standard WO exception page is starting to show its age and I think it’s high time we improve it. I started a new error page today and added the capability to show the code that’s throwing the error (a feature of some of

Re: Creating the perfect error page

2015-04-26 Thread David Holt
I agree, looks great! Sent from my iPad On Apr 26, 2015, at 7:34 PM, Paul Hoadley pa...@logicsquad.net wrote: On 27 Apr 2015, at 7:09 am, Hugi Thordarson h...@karlmenn.is wrote: The standard WO exception page is starting to show its age and I think it’s high time we improve it. I

Re: Creating the perfect error page

2015-04-26 Thread Matthew Ness
That looks really nice. You'd never put that in a _production_ release though, would you? Looks perfect for development, but in production I'd prefer my exception views to be pretty generic with a non-technical message, unless the app is for internal staff. So, er, that's what we do. Aside: am

Re: Creating the perfect error page

2015-04-26 Thread Chuck Hill
On 2015-04-26, 8:34 PM, Matthew Ness wrote: That looks really nice. Yes, nice work! You'd never put that in a _production_ release though, would you? Looks perfect for development, but in production I'd prefer my exception views to be pretty generic with a non-technical message, unless the

Re: Creating the perfect error page

2015-04-26 Thread Paul Hoadley
On 27 Apr 2015, at 1:08 pm, Chuck Hill ch...@gevityinc.com wrote: You'd never put that in a _production_ release though, would you? Looks perfect for development, but in production I'd prefer my exception views to be pretty generic with a non-technical message, unless the app is for

Re: Creating the perfect error page

2015-04-26 Thread Chuck Hill
On 2015-04-26, 8:43 PM, Paul Hoadley wrote: Aside: am I mis-remembering, or did the Yellow Box exception view include a link to the IDE code base class and line in development, you know, a zillion years ago? Now that you mention it, I recall this too. Oh you old timers. I'll get off your