multi select in EOModeler

2007-08-13 Thread Pelsser François
Hey, I have a problem in EOModeler, to do a many to many relationship, I should select 2 attributes in the diagram view but i can't select attributes in this view. I click to the name of the attribute but nothing change and nothing happend. What must i do Thanks Frol

Re: WOServletAdaptor trouble with tomcat

2007-08-13 Thread Jake MacMullin
Jonny, I had a quick look at the ERXApplication source and I think the problem you are experiencing could be due to the fact that an application's 'main' method is not invoked when it is built as a WAR and deployed in a servlet container. Therefore, any code in the application's

Re: multi select in EOModeler

2007-08-13 Thread Paolo Sommaruga
Hi Frol, in order to do a many-to-may, switch in the Table Mode view, then you need to select the 2 entity in the following way: first selects the model root icon on the left view, then selects the two entities rows on the right view (uses Option-click to select the entities rows), then

Re: deleting and many to many

2007-08-13 Thread John Larson
Hi Frank, A couple of comments. Generally, the primary key for the many to many relationship is the combination of the two primary keys that the table is linking together. It may be possible for it to work without it set up like that, but I've never done it. Secondly, there are

Reliability EOModeler

2007-08-13 Thread Frank Stock
Hi All, I have a many to many relation with a relation-table. I don't work with propagate key, so I have a primairy key and two foreign keys to the other tables. Those foreign keys cannot be null. Sometimes we see that one of the keys, or both of the foreign keys are zero. I am not able to

Re: deleting and many to many

2007-08-13 Thread Frank Stock
Hi John, Op 13-aug-07, om 14:47 heeft John Larson het volgende geschreven: Hi Frank, A couple of comments. Generally, the primary key for the many to many relationship is the combination of the two primary keys that the table is linking together. It may be possible for it to work

Re: WOCreator

2007-08-13 Thread Paul Stringer
Many thanks for WOCreator and the time taken to put those instructions together. The whole thing was easy to follow and worked like a charm. Not something I expected when embarking on doing a WAR deployment for the first time. I had one issue copying all the WebObjects JARS and I would get

Controlling which submit button is default?

2007-08-13 Thread Theodore Petrosky
I am new to this. How does WebObjects choose which button in a form is the 'default' button that gets pressed when you hit the return key? Can I control this? Ted Looking for a deal? Find great prices

Re: Controlling which submit button is default?

2007-08-13 Thread Chuck Hill
For example, Googling 'WebObjects form default submit button produces http://homepage.mac.com/kelleherk/iblog/C1133025376/E20060425085122/ index.html Chuck On Aug 13, 2007, at 9:24 AM, John Huss wrote: It's determined by the HTML. It can very complicated sometimes. But it's not a

Re: Reliability EOModeler

2007-08-13 Thread Chuck Hill
On Aug 13, 2007, at 5:54 AM, Frank Stock wrote: Hi All, I have a many to many relation with a relation-table. I don't work with propagate key, so I have a primairy key and two foreign keys to the other tables. Those foreign keys cannot be null. Why? If the table has only those three

Re: Controlling which submit button is default?

2007-08-13 Thread John Huss
It's determined by the HTML. It can very complicated sometimes. But it's not a directly WO issue. I would try searching google. On 8/13/07, Theodore Petrosky [EMAIL PROTECTED] wrote: I am new to this. How does WebObjects choose which button in a form is the 'default' button that gets

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Chuck Hill
On Aug 12, 2007, at 3:52 PM, Miguel Arroz wrote: Hi! This one should be simple. I have object A that has a to-many relationship to B. So, A contains Bs. I fetch A that contains one B. Then, I add another B to the relationship. Some other app deletes the B that was there before,

JavaMonitor alternatives

2007-08-13 Thread John Huss
Are there any available alternatives to using JavaMonitor? I recently was quite frustrated with a problem where JavaMonitor simply wouldn't launch my application or give any output, while the application would run fine from the command line. I don't like being held hostage by an application that

Re: JavaMonitor alternatives

2007-08-13 Thread Chuck Hill
On Aug 13, 2007, at 8:53 AM, John Huss wrote: Are there any available alternatives to using JavaMonitor? I recently was quite frustrated with a problem where JavaMonitor simply wouldn't launch my application or give any output, while the application would run fine from the command line.

Howto redirect DirectAction to ComponentAction?

2007-08-13 Thread Oliver Scheel
I have the luck to insert a WO app into a PHP app. I call my WO via DirectActions. Now I wan't to redirect the DirectAction to a ComponentAction at call time, because the PHP part refreshes (via JavaScript and location.reload()) the page and with the DirectAction URL it looses some states. Or is

Wocode.com

2007-08-13 Thread Ruenagel, Frank
Hi, Does anybody know anything about Wocode.com? Again It is down: No instance available. Regards Fr ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)

Re: JavaMonitor alternatives

2007-08-13 Thread Dov Rosenberg
We deploy our WO apps as servlets so JavaMonitor doesn¹t work for us. We use the java service wrapper http://wrapper.tanukisoftware.org/ It doesn¹t provide the management interface to deploy apps and such but it is pretty decent as far as monitoring the process and restarting it if there is a

Re: Howto redirect DirectAction to ComponentAction?

2007-08-13 Thread Chuck Hill
On Aug 13, 2007, at 10:04 AM, Oliver Scheel wrote: I have the luck to insert a WO app into a PHP app. I call my WO via DirectActions. Now I wan't to redirect the DirectAction to a ComponentAction at call time, because the PHP part refreshes (via JavaScript and location.reload()) the page

Re: multi select in EOModeler

2007-08-13 Thread David Holt
You have to shift-click the second entity. The EOModeler will then select the proper attributes to create your join table. David -- It's like driving a car at night. You never see further than your headlights, but you can make the whole trip that way. E. L. Doctorow from Sunbeams:

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Miguel Arroz
Hi! On 2007/08/13, at 17:24, Chuck Hill wrote: How do you handle this kind of problem? By not disabling merging of changes. :-) (I don't know if it's relevant, but the merging of changes is disabled for the context). I guess that it is relevant, though I don't recall doing this.

Re: Controlling which submit button is default?

2007-08-13 Thread Miguel Arroz
Hi! You can also use Javascript for that, I think. It's a bit of a pain (you have to catch the keypress event on every field of the form and do the right thing) but I think it's doable. Yours Miguel Arroz On 2007/08/13, at 16:42, Theodore Petrosky wrote: I am new to this. How does

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Chuck Hill
On Aug 13, 2007, at 1:10 PM, Miguel Arroz wrote: Hi! On 2007/08/13, at 17:24, Chuck Hill wrote: How do you handle this kind of problem? By not disabling merging of changes. :-) (I don't know if it's relevant, but the merging of changes is disabled for the context). I guess that

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Miguel Arroz
Hi! On 2007/08/13, at 21:35, Chuck Hill wrote: I'm going to test this. But why is it relevant, if the deletion of the first object happens in a different app? What exactly is being merged here? If it is in another app or another OSC then you won't get the error that you mentioned.

RE: JavaMonitor alternatives

2007-08-13 Thread Andrew Lindesay
Hello John; Is there something else besides JavaMonitor that can be used to manage or at least just launch applications? You may be interested in looking into my AJP adaptor... http://homepage.mac.com/andrewlindesay/le/manuals/lewostuff/ LEWOStuffOverview.pdf View the section 0.8 AJP

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Chuck Hill
On Aug 13, 2007, at 1:42 PM, Miguel Arroz wrote: Hi! On 2007/08/13, at 21:35, Chuck Hill wrote: I'm going to test this. But why is it relevant, if the deletion of the first object happens in a different app? What exactly is being merged here? If it is in another app or another OSC

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Miguel Arroz
Hi! On 2007/08/13, at 21:44, Chuck Hill wrote: Then something in your app is refreshing the to-many relationship. Well, the problem is much more strange than I thought (we are entering the you surely know how to have fun with WO zone!). I have the a.bs() to-many relationship. I

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Chuck Hill
On Aug 13, 2007, at 2:56 PM, Miguel Arroz wrote: Hi! On 2007/08/13, at 21:44, Chuck Hill wrote: Then something in your app is refreshing the to-many relationship. Well, the problem is much more strange than I thought (we are entering the you surely know how to have fun with WO zone!).

Re: Yes, even one more concurrency question - relationship freshness

2007-08-13 Thread Miguel Arroz
Hi! Have you tried a.removeObjectFromBothSidesOfRelationship( obj, bs ); Same result. Have you made other changes in the EC? If not, ec.revert() should handle all this much more cleanly. I did! :( The problem is this: the user changes one object. Then, I'm going to try to save the

Re: deployment to include jars

2007-08-13 Thread Jacob Mouka
I'm using wolips 3.3.4153, with eclipse 3.3.0. Sorry about these newbie questions, I'm fairly new to wolips (but now webobjects/eclipse). Where is the wolips list? On 10-Aug-07, at 3:14 PM, Guido Neitzer wrote: On 10.08.2007, at 12:01, Jacob Mouka wrote: What am I missing? Where should

Common application for different database users

2007-08-13 Thread Cheong Hee (Datasonic)
I have the same application that is currently used by different group of users (or company). I did it in JavaMonitor and gave them different name for application instances and initialized them with few own parameters in JavaMonitor. So that when each group of them will access through:

Re: deployment to include jars [SOLVED... I suppose]

2007-08-13 Thread Jacob Mouka
Hi all I guess I figured out how to include the jars in the app.woa deploy, but I'm wondering if this is the standard practice. I edited my build.xml to include my jars (in the build.woa target, at bottom): lib dir=lib include

Re: deployment to include jars [SOLVED... I suppose]

2007-08-13 Thread Chuck Hill
There are a few permutations of this, but that is essentially how it has been done. If you use the Wonder project layout, this is pre- configured to include all jars in the Libraries/ directory. WOLips (in its origin as WOProject) was very Ant based and there are still some things that