Re: Dependent popups on the same line

2011-06-29 Thread Alexis Tual
Hi, you could set the elementName binding of AjaxObserveField to span Cheers Alex Le 29 juin 2011 à 04:43, Stavros Panidis a écrit : Hi, I try to reproduce DependentListsExample from AjaxExample in my project. My question: Is it possible to keep dependent popups on the same line?

Using StoredProcedure

2011-06-29 Thread naneon . raymond
Hi,  I want to know how to use a stored procedure in WO. I created a configurable stored procedure that returns more than 2000 data. My question is, data returned would be EOF or should I cast to an entity?  Could these data be stored in a WODisplayGroup? What should contain my method to

Re: Antw: Using StoredProcedure

2011-06-29 Thread naneon . raymond
Hi Andri, Thanks for your help, I want to know the temporary table, it's a class or it's a virtual table create automatically by EOFetchSpecification. a little example code of your tempory table is welcome. Ray Message du : 29/06/2011 De : Andri

Re: state of apns?

2011-06-29 Thread Jesse Tayler
I'm missing just a little something -- I'm able to send apns running my wo-app in eclipse - I now send without returning an error at least. String payload = APNS.newPayload().alertBody(Alert!).build(); String token = 3a09e272 3668c411 .; service.push(token,

Re: ERCoreBusinessLogic docume-anything

2011-06-29 Thread Michael Gargano
I'm assuming my entity also needs a class override of ERCStampedEnterpriseObject. Thanks. -Mike On Jun 28, 2011, at 2:42 PM, Ramsey Gurley wrote: Are you referring to the audit trails? That's pretty easy to use. Just include your list of ERXAuditKeys in the userInfo dictionary for the

Re: AjaxTabbedPanel resets values

2011-06-29 Thread Steve Peery
Thanks Chuck. CCAjaxTabPanel is working well for me. Steve On Jun 28, 2011, at 7:45 PM, Chuck Hill wrote: I think that might be a known issue. You may have better luck using CCAjaxTabPanel or CCTabPanel in the AjaxModalDialog. Chuck On Jun 28, 2011, at 4:38 PM, Steve Peery wrote:

Re: state of apns?

2011-06-29 Thread Farrukh Ijaz
This may help you. I guess you are not removing the spaces in your device token. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { NSString *dt = [[deviceToken description]

Re: ERCoreBusinessLogic docume-anything

2011-06-29 Thread Ramsey Gurley
Nope (^_^) That's the beautiful thing about the audit trails. They work without making any changes to your existing entities. All you have to do is add the ERXAuditKeys to your model. The rest is handled via editing context notifications. Ramsey On Jun 29, 2011, at 11:03 AM, Michael

Re: AjaxTabbedPanel resets values

2011-06-29 Thread Chuck Hill
I am not surprised. AjaxTabbedPanel is a nasty piece of work. And I say that as the author. :-) On Jun 29, 2011, at 11:14 AM, Steve Peery wrote: Thanks Chuck. CCAjaxTabPanel is working well for me. Steve On Jun 28, 2011, at 7:45 PM, Chuck Hill wrote: I think that might be a

NSData from Oracle BLOB gives what String?

2011-06-29 Thread Ray Kiddy
This is an odd one. Has anyone seen something like this. We have two different Oracle database, one for production and one for testing. They both run on Linux, though the dev version is Ubuntu and the production version is on RedHat. The dev version gives: SQL*Plus: Release 11.2.0.1.0 and

Re: state of apns?

2011-06-29 Thread Jesse Tayler
thanks - there's still a bit of confusion -- On Jun 29, 2011, at 2:20 PM, Farrukh Ijaz wrote: NSURL *url = // URL of your web application ... does this need to be an active part on my server already? I haven't got javaapns installed on the server yet -- I am getting classdefnotfound

ISE With WO 5.4.3

2011-06-29 Thread Kieran Kelleher
Anyone ever seen an error like this before? Not reproducible easily - can happen during heavy EOF save activity across multiple threads in WO 5.4.3. I have failed to make the same error happen with same code in WO 5.3.3. IllegalStateException: adaptorValueType: unable to load class named

Re: ISE With WO 5.4.3

2011-06-29 Thread Ramsey Gurley
I suspect it may have something to do with the use of the incompletely deprecated _valueClassName in WO 5.4.3's EOAttribute. EOAttribute still uses it, sometimes. I don't remember the issue I was having, but that is something I changed in ERAttributeExtension's version of this method. You

Re: ISE With WO 5.4.3

2011-06-29 Thread Kieran Kelleher
ERPrototypes is in the classpath. I tried ERAttributeExtension and same error after running for a while. BTW, seems to only happen when: Multiple threads creating instances of the same Entity where the editing contexts share the same parent OSC. Might be a WO 5.4.3 bug Also, the attribute in

Re: ISE With WO 5.4.3

2011-06-29 Thread Chuck Hill
The only thing that comes to mind is a race condition clearing and re-populating the class description cache or something with _NSUtilities._classWithPartialName. I think that is what the attribute uses to get the class. On Jun 29, 2011, at 4:06 PM, Kieran Kelleher wrote: ERPrototypes is

Re: ISE With WO 5.4.3

2011-06-29 Thread Chuck Hill
I did not say it made a lot of sense. :-P Could it be running out of memory? I'd expect a less consistent error than that. Is one of the threads referencing entities that were not referenced previously (as I try to recall when the class description cache gets invalidated). It also seems odd

Re: ISE With WO 5.4.3

2011-06-29 Thread Ramsey Gurley
Probably not a great solution if you have this happening in a lot of places, but have you tried adding valueClassName = java.lang.Boolean; to the attribute instead of relying on the prototype to provide it? Ramsey On Jun 29, 2011, at 4:06 PM, Kieran Kelleher wrote: ERPrototypes is in the

Re: ISE With WO 5.4.3

2011-06-29 Thread Paul Hoadley
On 30/06/2011, at 8:36 AM, Kieran Kelleher wrote: Also, the attribute in question looks like this: { columnName = isfactorialprime; name = isFactorialPrime; prototypeName = boolean; userInfo = { _EntityModeler =

Re: ISE With WO 5.4.3

2011-06-29 Thread Kieran Kelleher
A demo :-) On Jun 29, 2011, at 8:15 PM, Paul Hoadley wrote: On 30/06/2011, at 8:36 AM, Kieran Kelleher wrote: Also, the attribute in question looks like this: { columnName = isfactorialprime; name = isFactorialPrime; prototypeName = boolean;

Re: ISE With WO 5.4.3

2011-06-29 Thread Kieran Kelleher
Yeah, it does not make a lot fo sense - I am sure I will find a solution - just not something I have time for right this minute since I have to tweak my wowodc presentation. It seems to be avoidable by making the round robin OSC pool the same size as thread pool which ensures no OSC shared

Re: Building Wonder w/Jenkins/Hudson

2011-06-29 Thread David Avendasora
Hi George! If you're coming to WOWODC I'll be helping people with exactly this. If not... well... you can take a look at this for now: https://github.com/avendasora/WOJenkins (you'll want to clone it and point to that repository instead of mine so as I'm making changes I don't mess with your

Re: Building Wonder w/Jenkins/Hudson

2011-06-29 Thread George Domurot
Hi Dave, I tinkered enough over the weekend and got everything working. I'll review your setup and make sure I've got everything ironed out just right. (Sadly, I'm going to miss WOWODC.) Thanks! -George On Jun 29, 2011, at 8:57 PM, David Avendasora wrote: Hi George! If you're coming to

Upgrading to Latest Wonder + DirectAction NoClassDefFoundError

2011-06-29 Thread George Domurot
I upgraded to the latest Wonder Git repo this past weekend. And, an interesting situation occurs when hitting a URL that has a typo in the action class or method names. For example: .../wa/person ... attempts to load a model Person object, results in NoClassDefFoundError triggered