Re: centos 6.2 - pulling my hair out (PARTIALLY SOLVED

2013-05-09 Thread Susanne Schneider
Dear Tim, hope you could solve your deployment problem by now. Because you did not mention it (or at least I did not remember): is this the only installed application to be handled by the WOMonitor (resp. the WOTaskDaemon)? We had similar problem once when the internal limit of the WOAdaptor

Running WO application standalone

2013-05-09 Thread Rudi Angela
Hi, I want to run a WO application without using a web server. The problem I currently encounter is serving the images (buttons etc.). Is there a way to do this without showing the real file paths of resources in the URL? Thanks, Rudi ___ Do not post

Re: Running WO application standalone

2013-05-09 Thread Ken Anderson
Rudi, Can you give us a little more background on what you're trying to do especially why? Like, why can't you use a web server, and why can't you use direct connect? Maybe we can find another way to solve your problem. Ken On May 9, 2013, at 7:36 AM, Rudi Angela rudi.ang...@gmail.com wrote:

rules help with Timestamp formatter

2013-05-09 Thread Theodore Petrosky
I don't get this at all. I am trying to format an NSTimestamp. I had a few timestamp formatter rules that were working fine. Like: 100 : (((pageConfiguration like 'Edit*Project*' or pageConfiguration like 'Create*Project*') and smartAttribute.className =

Re: rules help with Timestamp formatter

2013-05-09 Thread Theodore Petrosky
My bad, I forgot that for some reason, NSTimestamps on a to-many (embedded component) first have to have their component changed to something like 'ERD2WDisplayDateOrNull' before a formatter can be used. --- On Thu, 5/9/13, Theodore Petrosky tedp...@yahoo.com wrote: From: Theodore

ERAttachment migration0 problems.

2013-05-09 Thread James Cicenia
I can't seem to get ERAttachment to migrate first as I keep getting an error: EORelationship(): cannot find entity named ERAttachment for destination of relationship attachment in entity Thanks James ___ Do not post admin requests to the list.

Re: ERAttachment migration0 problems.

2013-05-09 Thread Chuck Hill
Sounds like the model is not getting loaded which suggests that it is not on your classpath for the framework with the EOModel. On 2013-05-09, at 2:40 PM, James Cicenia wrote: I can't seem to get ERAttachment to migrate first as I keep getting an error: EORelationship(): cannot find entity

Re: ERAttachment migration0 problems.

2013-05-09 Thread Ramsey Gurley
In your migration, you also need @Override public NSArrayERXModelVersion modelDependencies() { return new NSArrayERXModelVersion(new ERXModelVersion(ERAttachment, 0)); } That way, it is loaded first so the dependency doesn't fail to resolve. Ramsey On May 9, 2013, at 2:42 PM, Chuck

Re: ERAttachment migration0 problems.

2013-05-09 Thread James Cicenia
Tripled checked class paths. Added the modelDependencies() in my migration0 PropertiesFile er.migration.migrateAtStartup=true er.migration.createTablesIfNecessary=true er.migration.modelNames=ERUsers,ERAttachment,ERTaggable,ERAuth,YellaDatabaseModel,ERCoreBL java.lang.IllegalArgumentException:

Re: ERAttachment migration0 problems.

2013-05-09 Thread Jesse Tayler
if you are certain your model is correct I recall that I've seen situations where basically the model wasn't loading in at all, and so just about everything would report errors like -- this can't find that -- type stuff. of course, I can't recall how I resolved those things, but your error

Re: ERAttachment migration0 problems.

2013-05-09 Thread James Cicenia
I generally have a 0 point WebObjects curse Whether it is NewProject0, Migration0, Deployment0, SetupWorkstation0... I am cursed. Good thought to double check the model. It is Model0 after all. On May 9, 2013, at 5:00 PM, Jesse Tayler jtay...@oeinc.com wrote: if you are certain your

Re: [Wonder-disc] ERJQuery

2013-05-09 Thread Johnny Miller
Hi Pascal, I started working on a JQuery framework and I'm up to one component! You can see it here: http://www.kahalawai.com/JQuery I'm pretty busy but I think I could make one component a day. I was wondering what people thought about a couple of questions I have: 1. Should I use data

Re: ERAttachment migration0 problems.

2013-05-09 Thread James Cicenia
Everything seems to check out everywhere with model verifications, class paths to ERAttachment, etc. My log seems somewhat normal, nothing stands out saying the model didn't load. On May 9, 2013, at 5:04 PM, James Cicenia ja...@jimijon.com wrote: I generally have a 0 point WebObjects

Re: ERAttachment migration0 problems.

2013-05-09 Thread Jesse Tayler
are you loading in a bunch of different models and building cross model relationships? if so, it may be related to the order in which they load, but I know not, about such things... oh, BTW, as software engineers, we were all cursed and that's why nothing works the first time through - it

Re: [Wonder-disc] ERJQuery

2013-05-09 Thread David LeBer
Yes definitely use the data attributes. Basically what I've been experimenting with is to have an init() method that is called on page load. It scans the dom looking for elements of AjaxJQ class, reads the component type from one data attribute and inits it with params from another data

Re: [Wonder-disc] ERJQuery

2013-05-09 Thread Johnny Miller
Hi David, On May 9, 2013, at 1:45 PM, David LeBer dleber_wo...@codeferous.com wrote: Yes definitely use the data attributes. OK. Basically what I've been experimenting with is to have an init() method that is called on page load. It scans the dom looking for elements of AjaxJQ class,

Re: [Wonder-disc] ERJQuery

2013-05-09 Thread Ken Anderson
I think this is awesome! I'm definitely planning on using JQuery within the next few months, and will happily contribute once I get to that point. Ken On May 9, 2013, at 6:19 PM, Johnny Miller jlmil...@kahalawai.com wrote: Hi Pascal, I started working on a JQuery framework and I'm up to