AjaxSortableList bindings

2009-05-19 Thread Lemuel Raganas
Hi List, I've read the AjaxSortableList bindings. What does listItemIDKeyPath means? Surely I know for the fact that it requires numeric so I bound an Integer to that binding key. I was hoping that index of every item of my NSArray/NSMutableArray object will be placed there. However when I

Re: Modifying Properties for an EOF JDBC-connection

2009-05-19 Thread Peter Vandoros
Try adding the properties to the JDBC connection URL. Regards, Peter On 20/05/2009, at 3:17 AM, Hugi Thordarson wrote: Hi all. I need to set a property for the Oracle JDBC-driver, can anyone tell me how to do that? This is wat I've tried (without success): - EOModel model = EOMod

WebServerResources under servlet deploy - WOAppMode=Deployment

2009-05-19 Thread Jon Nolan
I am really struggling to figure out how to access static resources under a servlet deployment. I want to serve them via tomcat for a variety of reasons. I set WOAppMode=Deployment and I get ERXStyleSheet and ERXJavaScript URLs which are giving me fits. For the sake of context, application U

Re: Setting the DEFAULT_JVM_OPTIONS

2009-05-19 Thread Chuck Hill
On May 19, 2009, at 11:48 AM, Ricardo Parada wrote: Hi All, I was wondering if there is a way to set the DEFAULT_JVM_OPTIONS so that when I start my app by hand i.e. by typing MyApp.woa/MyApp The DEFAULT_JVM_OPTIONS may be settable via the woapplication task in WOProject. That is more o

Re: Form Values updated before Action Called

2009-05-19 Thread Chuck Hill
On May 19, 2009, at 5:10 AM, David Avendasora wrote: On May 18, 2009, at 9:00 PM, Chuck Hill wrote: On May 18, 2009, at 11:22 AM, David Avendasora wrote: Hi all, I'm sure this is an aspect of the Request - Response loop that I'm just not fully grasping. I have a form that is called via an

Re: Oracle driver...

2009-05-19 Thread Chuck Hill
On May 19, 2009, at 5:45 AM, Sherry Tirko wrote: Here is one of the errors that we are getting... Failed to change product flagsupdateValuesInRowDescribedByQualifier -- com.webobjects.jdbcadaptor.JDBCChannel method failed to update row in database That can have a few causes. Violating

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Gustavo Adolfo Pizano
Ricardo Thanks, I will try that tomorrow first time in the morning at the office. I will let you know how it went. G. On May 19, 2009, at 8:19 PM, Ricardo Parada wrote: Ok... to be a bit more specific, do the following: 1) Add an updateContainerID="GroupSelection"/> 2) Add a wrapping

Setting the DEFAULT_JVM_OPTIONS

2009-05-19 Thread Ricardo Parada
Hi All, I was wondering if there is a way to set the DEFAULT_JVM_OPTIONS so that when I start my app by hand i.e. by typing MyApp.woa/MyApp in Terminal the desired JVM options are used. This is an app I start by hand and I'm not using wotaskd or the monitor app. Ricardo

Re: Java Monitor 5.2.4 with WO 5.4.3 Applications

2009-05-19 Thread Chuck Hill
Hi Sherry, On May 19, 2009, at 5:05 AM, Sherry Tirko wrote: Hi All, We are running 5.4.3 applications in an old version of womonitor, 5.2.4. Can you tell me if this causes problems? We are seeing issues of instances hanging for what seems to be no reason and then we are unable to shutdown

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Ricardo Parada
Ok... to be a bit more specific, do the following: 1) Add an 2) Add a wrapping your input element and the ajax submit button suggested in (1) above 3) Then set your AjaxSelectionList onchange binding to "ajaxSubmitAndUpdate()" --- You did say the onchange binding was working right? If so the

Re: [MEETING] Last Minute Reminder, WO-NOVA TONIGHT at 6:30 PM

2009-05-19 Thread Chuck Hill
On May 19, 2009, at 6:52 AM, David Avendasora wrote: On May 19, 2009, at 9:47 AM, Andrew R. Kinnie wrote: Greetings All (again): Just a friendly reminder that tonight is this month's meeting of the WebObjects developers' group for Northern Virginia, Maryland, and DC! Dave Avendasora is

Re: Oracle ojdbc5.jar file

2009-05-19 Thread Sherry Tirko
I was able to download this, eventually. On May 19, 2009, at 11:50 AM, Sherry Tirko wrote: Hi All, I was wondering if someone could email me this driver or point me to a place to download it. I've been trying to download it from the Oracle site with no luck. It's giving me a 404 error.

Re: Modifying Properties for an EOF JDBC-connection

2009-05-19 Thread Gustavo Adolfo Pizano
Hello.. I think this is quite similar to what I was looking but on a LDAP server.. what I did was the follwoing: EOModel model = EOModelGroup.defaultGroup().modelNamed("LDAPModel"); NSMutableDictionary overrides = new NSMutableDictionary(); overrides.takeValueForKey("ldap://lo

Re: Modifying Properties for an EOF JDBC-connection

2009-05-19 Thread JR Ruggentaler
Try extending the DB specific plugin, for example the code below sends two properties (v$session.program, v$session.process) to Oracle providing an actual Application name and PID. Normally the DBA see generic information like JDBC Client and no PID. import java.util.Properties; import com

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Ricardo J. Parada
Disclaimer: I have not used AjaxSelectionList :-) I looked briefely at the example in AjaxExample. If you examine the HTML in the browser you'll notice that this is a wrapping an unordered list . Then you'll find a hidden text field which I believe is generated by AjaxSelectionList to

Modifying Properties for an EOF JDBC-connection

2009-05-19 Thread Hugi Thordarson
Hi all. I need to set a property for the Oracle JDBC-driver, can anyone tell me how to do that? This is wat I've tried (without success): - EOModel model = EOModelGroup.defaultGroup().modelNamed( "MyModel" ); EODatabaseContext dbc = EODatabaseContext.registeredDatabaseContextForMode

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Gustavo Adolfo Pizano
Hello, indeed I checked the examples... what I want is something similar to the toggle row.. but not a WORepetition, but a AjaxSelectionList, so once I click ion a item in the list, the updater will "update" without the need to push any "submit" buttom.. but in the example its kinda conf

Re: help... dependent popups ajax and modalContainer problem

2009-05-19 Thread Theodore Petrosky
Something interesting the two popups are set up as in the ajax example as being dependent. When I change popup1 (Category) I fire a method to get the appropriate subCategories for this category. In my experiments, I have an action on popup2 (subcategory). after I change popup1, popup2 no l

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Mark Gowdy
Hi, I recently starting using the Wonder Ajax stuff, and this is my (limited understanding) solution to your problem. I think you need an AjaxSubmitButton in the form somewhere: updateContainerID = "GroupSelection" action = "$someActionInJava"/> I am probably wrong (there is probably some

Re: EOF Stumper (for me at least)

2009-05-19 Thread Ricardo Strausz
Hola Lon, Chuck... On May 18, 2009, at 9:05 PM, webobjects-dev-requ...@lists.apple.com wrote: Message: 7 Date: Mon, 18 May 2009 17:58:32 -0700 From: Chuck Hill Subject: Re: EOF Stumper (for me at least) To: Lon Varscsak Cc: WebObjects-Dev Mailing List List Message-ID: Content-Type: text/

Oracle ojdbc5.jar file

2009-05-19 Thread Sherry Tirko
Hi All, I was wondering if someone could email me this driver or point me to a place to download it. I've been trying to download it from the Oracle site with no luck. It's giving me a 404 error. Thanks, Sherry Sherry Tirko SOAR Project Outreach Technology Services 814-865-9068 sl...@ou

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Gustavo Adolfo Pizano
Hello Dave. Well... im home now.. but this is what I remember I have written... oh well let me see if I can access the work's computer from home ... ... Ok got it... This is what I have.

Re: Java Monitor 5.2.4 with WO 5.4.3 Applications

2009-05-19 Thread Kieran Kelleher
Have you tried running jstack against the hung instances to make sure it is not a deadlock? I though I had a WOMonitor problem a month ago, when in fact it was a WOSessionStore checkout deadlock due to a classloader error in appendToResponse in one specific WOComponent on one specific page.

Re: [MEETING] Last Minute Reminder, WO-NOVA TONIGHT at 6:30 PM

2009-05-19 Thread David LeBer
On 19-May-09, at 9:59 AM, David Avendasora wrote: On May 19, 2009, at 9:56 AM, David LeBer wrote: On 19-May-09, at 9:52 AM, David Avendasora wrote: On May 19, 2009, at 9:47 AM, Andrew R. Kinnie wrote: Greetings All (again): Just a friendly reminder that tonight is this month's meeting

Re: [MEETING] Last Minute Reminder, WO-NOVA TONIGHT at 6:30 PM

2009-05-19 Thread David Avendasora
On May 19, 2009, at 9:56 AM, David LeBer wrote: On 19-May-09, at 9:52 AM, David Avendasora wrote: On May 19, 2009, at 9:47 AM, Andrew R. Kinnie wrote: Greetings All (again): Just a friendly reminder that tonight is this month's meeting of the WebObjects developers' group for Northern V

Re: [MEETING] Last Minute Reminder, WO-NOVA TONIGHT at 6:30 PM

2009-05-19 Thread David LeBer
On 19-May-09, at 9:52 AM, David Avendasora wrote: On May 19, 2009, at 9:47 AM, Andrew R. Kinnie wrote: Greetings All (again): Just a friendly reminder that tonight is this month's meeting of the WebObjects developers' group for Northern Virginia, Maryland, and DC! Dave Avendasora is go

Re: [MEETING] Last Minute Reminder, WO-NOVA TONIGHT at 6:30 PM

2009-05-19 Thread David Avendasora
On May 19, 2009, at 9:47 AM, Andrew R. Kinnie wrote: Greetings All (again): Just a friendly reminder that tonight is this month's meeting of the WebObjects developers' group for Northern Virginia, Maryland, and DC! Dave Avendasora is going to be doing a super-fabulous demonstration, com

[MEETING] Last Minute Reminder, WO-NOVA TONIGHT at 6:30 PM

2009-05-19 Thread Andrew R. Kinnie
Greetings All (again): Just a friendly reminder that tonight is this month's meeting of the WebObjects developers' group for Northern Virginia, Maryland, and DC! Dave Avendasora is going to be doing a super-fabulous demonstration, complete with dancing girls and fireworks . . . I think tha

WebObjects Puzzlers from WOWODC 2008

2009-05-19 Thread Pascal Robert
Hello everyone, We uploaded the WebObjects Puzzlers session from WOWODC 2008 in the podcasts feed available on wocommunity.org (and iTunes). It was such a fun and learning session that we are doing it again this year! If you are not already subscribed to the feed : http://phobos.a

Re: What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread David Avendasora
Hey Gustavo, Can you paste the WebObject tag parameters here for both the AjaxSelectionList and the AjaxUpdateContainer? I'm having a hard time visualizing how they are setup. Dave On May 19, 2009, at 9:23 AM, Gustavo Adolfo Pizano wrote: Hello. I have an AjaxSelecitonList, with the dat

help... dependent popups ajax and modalContainer problem

2009-05-19 Thread Theodore Petrosky
I still haven't been able to understand my problem with these dependent popups. I have a displayGroup in a table. when you select a row to edit, a modalContainer comes up with the various fields. I have a Category and a subCategory set of popups. (subCategory dependent on Category) If you chang

What im doing wrong with AjaxUpdateContainer and a AjaxSelectionList?

2009-05-19 Thread Gustavo Adolfo Pizano
Hello. I have an AjaxSelecitonList, with the data I need to show, now I have an AjaxUpdateContainer with id "GroupSelection" also. but when I click and item in the list the container doesnt update.. I tried then to set the binding onselect = "return actionOnList();" and in that method I

Re: Oracle driver...

2009-05-19 Thread Sherry Tirko
Here is one of the errors that we are getting... Failed to change product flagsupdateValuesInRowDescribedByQualifier -- com.webobjects.jdbcadaptor.JDBCChannel method failed to update row in database Here is the stack trace of another error we are getting, but I'm not sure it's related...

Re: Form Values updated before Action Called

2009-05-19 Thread David Avendasora
On May 18, 2009, at 9:00 PM, Chuck Hill wrote: On May 18, 2009, at 11:22 AM, David Avendasora wrote: Hi all, I'm sure this is an aspect of the Request - Response loop that I'm just not fully grasping. I have a form that is called via an AjaxModalDialog that is outside any other forms

Java Monitor 5.2.4 with WO 5.4.3 Applications

2009-05-19 Thread Sherry Tirko
Hi All, We are running 5.4.3 applications in an old version of womonitor, 5.2.4. Can you tell me if this causes problems? We are seeing issues of instances hanging for what seems to be no reason and then we are unable to shutdown those instances without doing a force quit. Refuse new ses

EOSortordering or ERXSortOrdering not ordering on NSArray

2009-05-19 Thread Gustavo Adolfo Pizano
Hello, I fetching some data as following. groups = XWSContactsGroup.fetchAllXWSContactsGroups(abEC, new NSArray(new Object[] {ERXSortOrdering.sortOrderingWithKey(XWSContactsGroup.CN, ERXSortOrdering.CompareDescending)})); for(XWSContactsGroup cg:groups){