Re: [ANN] AjaxDatePicker and AjaxDefaultSubmitButton

2009-06-23 Thread Travis Britt
On Jun 23, 2009, at 9:09 PM, Chuck Hill wrote: On Apr 28, 2009, at 6:37 AM, Travis Britt wrote: I was able to reproduce this issue by using AjaxDatePicker in a form on an AjaxTabbedPanel. If the AjaxDatePicker is not on the initially selected tab, and is updated via Ajax (for example, an aj

Re: [ANN] AjaxDatePicker and AjaxDefaultSubmitButton

2009-06-23 Thread Chuck Hill
Hi Travis, On Apr 28, 2009, at 6:37 AM, Travis Britt wrote: On Mar 27, 2009, at 11:02 AM, Chuck Hill wrote: One other thing is when you reopen the AMD a second time (without doing a page refresh) the css will be lost. To fix it I adding the css in the appendToResponse of the AMD with ERXRes

Re: ERXJSOpenWindowSubmitButton

2009-06-23 Thread Travis Britt
On Jun 23, 2009, at 2:11 PM, Frank Stock wrote: I'd deal with this by just using CSS to style the submit button as an image. The CSS solution could indeed solve my problem. Do you have a small example of how you do that? Just surround the button with a div or something you can use as a sel

Re: AJAX Date Picker binding to one day less that the chosen one

2009-06-23 Thread Chuck Hill
I use it with the "formatter" binding, not "format" and have not had any problems. I think the formatter I use most often also sets the time to noon in the chosen day to avoid these problems. Chuck On Jun 23, 2009, at 12:26 AM, Gustavo Adolfo Pizano wrote: Yeah for any date... Im thinki

Re: strange inheritance problem

2009-06-23 Thread Chuck Hill
On Jun 23, 2009, at 12:10 AM, Tim Worman wrote: One other avenue to pursue is whether EOKeyValueQualifier is suitable for the sort of query you are doing: EOKeyValueQualifier ("primaryapprovers.employee",EOQualifier.QualifierOperatorEqual, someEmployee) Maybe ERXExistsQualifier (EOKe

Re: Project Wonder Version for WebObjects 5.2.4

2009-06-23 Thread Chuck Hill
On Jun 23, 2009, at 6:07 AM, Mike Schrag wrote: er.extensions.ERXEC.useSharedEditingContext=false who are you and what have you done with lachlan! ms Could that be a typo? Everyone knows that this is easy to use and bug free! Or an alien abduction? Chuck -- Chuck Hill Se

Re: ERXJSOpenWindowSubmitButton

2009-06-23 Thread Frank Stock
On Jun 22, 2009, at 4:23 PM, Frank Stock wrote: thanks, I get the point, but can you tell me how I do that with inline bindings? Op 22-jun-09, om 21:30 heeft Chuck Hill het volgende geschreven: You could use the queryDictionary binding on hyperlink and then request.formValueForKey() to get the

SAXParseException only when clients use https

2009-06-23 Thread JR Ruggentaler
I am getting a SAXParseException similar to the one described in confluence at http://wiki.objectstyle.org/confluence/display/WO/Web+Services-Common+Pitfalls+and+Troubleshooting org.xml.sax.SAXParseException: Document root element is missing. at org.apache.crimson.parser.Parser2.fatal(P

Re: RESTful WO messages for non-persistent objects

2009-06-23 Thread Mike Schrag
if you're creating new objects, i THINK it should just work with errest ... if you're referencing existing ones, you have to provide an implementation IERXRestDelegate that can resolve objectOfEntityNameWIthID (where "entity name" is really "class name" for non-EOs) ... in your ERXRouteCon

Re: RESTful WO messages for non-persistent objects

2009-06-23 Thread Mike Schrag
if you're creating new objects, i THINK it should just work with errest ... if you're referencing existing ones, you have to provide an implementation IERXRestDelegate that can resolve objectOfEntityNameWIthID (where "entity name" is really "class name" for non-EOs) On Jun 23, 2009, at 11

RESTful WO messages for non-persistent objects

2009-06-23 Thread DANIEL BEATTY
Greetings all, This may be a Mike question. If one has an object tree that is non- persistent, how does one fill-in that tree through either Route Request Handler or Route Controller? Is it accessible via the remaining WO Request (assumably useable in the Route Controller)? Does it get

WOWODC East : call for speakers

2009-06-23 Thread Pascal Robert
Hello everyone, We are looking at adding advanced sessions to WOWODC East. For example, good chances I will do a session to show how to use ERTaggable, ERAttachement, ERChronic and localization to an existing project. We already have a couple of proposals but we would like to have more pe

Re: Thank you WebObjects + community

2009-06-23 Thread Neil MacLennan
Congratulations Gustavo! .neilmac On 23 Jun 2009, at 12:33, Gustavo Adolfo Pizano wrote: I just wanted to say thanks to all of you and Apple for WO. HEHEHE!, I have deployed my first WO application into a WO server, and its being used, its small one but the feeling it's 1000x bigger :D:D:

Re: Large dataset for RDBMS/EOF tests?

2009-06-23 Thread Jean-Francois Veillette
Does anyone have experience with this ? http://freshmeat.net/projects/databene-benclipse#release_301306 - jfv Le 09-06-20 à 13:32, Daniel Beatty a écrit : Greetings Pascal, How about the Sloan Digital Sky Survey Data Release (SDSS) 1 or the MONET survey. Both Dr. Tuparev and I have respecti

Re: Project Wonder Version for WebObjects 5.2.4

2009-06-23 Thread Mike Schrag
er.extensions.ERXEC.useSharedEditingContext=false who are you and what have you done with lachlan! ms ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/

Re: Security Issue for Hudson

2009-06-23 Thread Mike Schrag
Greetings all (especially Mike), Are there any measures for securing Hudson for university type infrastructure? Your presentation of Hudson was wonderful, and I look forward to using it. Hudson supports several different auth options, the most obvious for a larger deployment being LDAP aut

Re: Log out method is not closing the session

2009-06-23 Thread Timo Hoepfner
Depends on the app. If your start page is a login page, you should make sure it doesn't create a session, until login succeeded. E.g. don't use WOSubmitButton, use a regular input type="submit" instead and use a directAction on the surrounding WOForm. Then you set the name on the inputs exp

Thank you WebObjects + community

2009-06-23 Thread Gustavo Adolfo Pizano
I just wanted to say thanks to all of you and Apple for WO. HEHEHE!, I have deployed my first WO application into a WO server, and its being used, its small one but the feeling it's 1000x bigger :D:D:D .. customer it's happy. I still need to do some refinement but WTF!! My first WO in-produ

Re: Log out method is not closing the session

2009-06-23 Thread Gustavo Adolfo Pizano
aha.. so I should not redirect to main but another page? G. On Jun 23, 2009, at 12:58 PM, Timo Hoepfner wrote: Chances are that the session gets terminated, but your main/start page immediately creates a new one... Usage of certain common components creates a new session if there is none.

Re: Log out method is not closing the session

2009-06-23 Thread Timo Hoepfner
Chances are that the session gets terminated, but your main/start page immediately creates a new one... Usage of certain common components creates a new session if there is none. Timo Am 23.06.2009 um 10:55 schrieb Gustavo Adolfo Pizano: Hello. I followed they way PWO says how to handle

Log out method is not closing the session

2009-06-23 Thread Gustavo Adolfo Pizano
Hello. I followed they way PWO says how to handle log out, I created a method Logout that it;s being called from a WOHyperLink, there I do the follwoing public WOComponent logout() { session().terminate(); WORedirect mainPage = (WORedirect) pageWithName("WORedirect"); mainPage.setUrl(context

Re: AJAX Date Picker binding to one day less that the chosen one

2009-06-23 Thread Gustavo Adolfo Pizano
Yeah for any date... Im thinking about its because DST, I have been trying to create another NSTimestamp from a GregorianCalendar, adding the d/m/y parameters from the binding, but Im still missing something, because its telling me that the time its 22:00hrs, if I add those 2 more hours

Re: strange inheritance problem

2009-06-23 Thread Tim Worman
Hello all: On Jun 19, 2009, at 1:14 PM, Chuck Hill wrote: On Jun 19, 2009, at 1:07 PM, Tim Worman wrote: All: I have some fetches that are not respecting the restricting qualifiers in my model for a simple inheritance structure. I'm using WO 5.4.3. This what I have: Job >> Approver >