Re: WebObjects Apache Connection Problems

2006-05-19 Thread Michelle Parker
or try sudo SystemStarter restart "WebObjects Services" mich On 19/05/2006, at 4:44 AM, Art Isbell wrote: On May 17, 2006, at 11:16 PM, Dev WO wrote: Then you should either start wotaskd, but I'm not sure it would work: SystemStarter start WebObjects Try: sudo SystemStarter start WebObjec

Re: AJAX WebObjects Integration

2006-05-19 Thread Mike Schrag
WOW! Thanks Pierce. I vote for inclusion of this on the WikiBook. It will be -- it made my "interesting post" list, I'm just not up to current yet :) But if someone wants to put it in there before me, that's fine too ... There's a top level Ajax entry that's empty at the moment. ms ___

Re: method failed to update row

2006-05-19 Thread Robert Walker
Take a look at "Update Strategies > Recovery" in the following document: http://developer.apple.com/documentation/WebObjects/ Enterprise_Objects/index.html This gives a couple of solutions to these "Optimistic Locking" exceptions, including some sample code (note that there may be some err

method failed to update row

2006-05-19 Thread Wolfram Stebel
Hi List, another problem i encounter today: i have two WO applications running, one uses objects from a sharedEditingContext for display only. In one method of this appication i added the following: ... EOEditingContext localEC = new EOEditingContext (); localEC.setSharedEditingContext ( null );

Re: AJAX WebObjects Integration

2006-05-19 Thread Pierce T. Wetter III
On May 19, 2006, at 11:53 AM, Chuck Hill wrote: Pierce, thank you. That was superb! One small edit and a note: On May 19, 2006, at 10:48 AM, Pierce T. Wetter III wrote: Reality: WebObjects is actually a better framework for use with WebObjects then Rails because it has a better compone

Re: AJAX WebObjects Integration

2006-05-19 Thread Pierce T. Wetter III
I read your earlier "WebObjects on Rails" post with much interest and started to throw together a small sample application that used EZ... classes. I slowed and stalled because I had to fill in a lot of the gaps -- I'm not adverse to doing that, but time is money/ precious and I'll have t

Re: Setting a Default toOne Relationship

2006-05-19 Thread Paul Lynch
On 19 May 2006, at 10:25, David Avendasora wrote: This is probably the crux of my problem. What you see above is the entire extent of the custom code written for the application so far. This is IT. NOTHING else. Everything else is managed by WO's D2JC framework. How would I check to see if

Re: AJAX WebObjects Integration

2006-05-19 Thread Chuck Hill
Pierce, thank you. That was superb! One small edit and a note: On May 19, 2006, at 10:48 AM, Pierce T. Wetter III wrote: Reality: WebObjects is actually a better framework for use with WebObjects then Rails because it has a better component system then Rails. Think this should read Re

Re: AJAX WebObjects Integration

2006-05-19 Thread David LeBer
On 19-May-06, at 1:48 PM, Pierce T. Wetter III wrote: Hi Mike, I'm primarily interested in general widgets and form widgets. I'm tired of trying to bring together WO and Dojo, so wanna give up. I think WebObjects clashes with AJAX. It doesn't make sense to use AJAX with WebObjects. If any

Re: Explaining the power of Direct to Web

2006-05-19 Thread Pierce T. Wetter III
On May 19, 2006, at 9:53 AM, David Holt wrote: After reading all the Direct to Web stuff I could get my hands on, I was trying to describe to my boss why we need to be looking at it and moving towards it. The metaphor I came up with was that D2W is like CSS for objects. I think that sort o

Re: AJAX WebObjects Integration

2006-05-19 Thread Pierce T. Wetter III
Hi Mike, I'm primarily interested in general widgets and form widgets. I'm tired of trying to bring together WO and Dojo, so wanna give up. I think WebObjects clashes with AJAX. It doesn't make sense to use AJAX with WebObjects. If anybody wants to convince me of the opposite, i'm willing ..

Re: Explaining the power of Direct to Web

2006-05-19 Thread Ken Anderson
David,I think people on the list could help out a lot better if we had an understanding of what you expect from D2W or any other WO technology.  What do you need it to do?  What kind of resources are available?KenOn May 19, 2006, at 12:53 PM, David Holt wrote:After reading all the Direct to Web stu

Explaining the power of Direct to Web

2006-05-19 Thread David Holt
After reading all the Direct to Web stuff I could get my hands on, I was trying to describe to my boss why we need to be looking at it and moving towards it. The metaphor I came up with was that D2W is like CSS for objects. I think that sort of describes its power, but I would be interested in how

Re: cant analyse illegalstateexception SOLVED

2006-05-19 Thread Wolfram Stebel
Am 17.05.2006 13:16 Uhr schrieb "David Avendasora" unter <[EMAIL PROTECTED]>: Thanks David! I removed one flattened relationship that was a relict of a join in many to many, which i afterwards changed to a real entity where i allocate rows programmatically. Solved! Wolfram > I have been getting

Re: WO 5.3 and Tomcat property files?

2006-05-19 Thread David Aspinall
I encountered problems with WebSphere using properties files. The first problem is that either the Framework properties files were NOT read, or they were not read in time (for me to initialize from them). The second is that when the properties are loaded, there is only ONE System.properti

Re: Setting a Default toOne Relationship

2006-05-19 Thread Anjo Krank
Am 19.05.2006 um 17:11 schrieb Chuck Hill: On May 19, 2006, at 3:02 AM, David Avendasora wrote: Hi Ken, The objects must get inserted upon instantiation. What would the point be of having a context that you don't use until you save the information to the database? Might just as well do

Re: Setting a Default toOne Relationship

2006-05-19 Thread Chuck Hill
On May 19, 2006, at 3:02 AM, David Avendasora wrote: Hi Ken, The objects must get inserted upon instantiation. What would the point be of having a context that you don't use until you save the information to the database? Might just as well do direct JDBC calls then. Well, you might be

Re: AJAX WebObjects Integration

2006-05-19 Thread Anjo Krank
Well said. And first and foremost, make sure what it is that you *actually* want to do. "Doing Ajax" just says nothing. Do you want some special widget? Call server side code? What for and why will that make your app better? Because if you haven't made sure that you know what you want is

Re: WO Web Services + Cocoa

2006-05-19 Thread Mike Schrag
Any idea how to control the namespace that is produced by WO's WSDL generator? I dug around and it was not obvious at the time ... ms On May 19, 2006, at 10:04 AM, Anjo Krank wrote: These normally appear in the tag declaration as xmlns:ns1="http://blabla";>. It might be that they go away if

Re: AJAX WebObjects Integration

2006-05-19 Thread Mike Schrag
As far as convincing you that it's not true that WO clashes with Ajax and that it doesn't make sense, obviously the Wonder Ajax frameworks essentially demonstrate the counterexample. It's both possible (clashless?) and DOES make sense :) However, it is true that making Ajax behave in the w

Re: WO Web Services + Cocoa

2006-05-19 Thread Anjo Krank
These normally appear in the tag declaration as xmlns:ns1="http://blabla";>. It might be that they go away if you start your namespace with sth more sensible than "http://";... Am 19.05.2006 um 15:49 schrieb Mike Schrag: Yes, I agree .. The ns1: sounds fishy, and I don't know WHY it is being

Re: WO Web Services + Cocoa

2006-05-19 Thread Mike Schrag
Yes, I agree .. The ns1: sounds fishy, and I don't know WHY it is being produced. I only know that it is by printing the result dictionary, and that is the value of the key. For what it's worth, I have not SEEN an ns2. However, there are tns1: and tns2: references inside of the WSDL. I w

Re: AJAX WebObjects Integration

2006-05-19 Thread Jean-François Veillette
From a quick read, you have to replace the php/asp handling with WO handling. A quick and easy way to do it is by using DirectAction, just so you can easily write the url directly in the html file. This will give you the bare essential just so it run. This is not how you would like a WO integ

RE: AJAX WebObjects Integration

2006-05-19 Thread Tokalak, Ahmet. D-IT2
I would be very glad if anybody can say how to run the DOJO HelloWorld example under WO. The URL of DOJO HelloWorld example: http://dojo.jot.com/WikiHome/Tutorials/HelloWorld Greetings, Ahmet > Von: Mike Schrag <[EMAIL PROTECTED]> > Datum: Fri, 19 May 2006 14:32:04 +0200 > An: "Tokalak, Ahmet,

RE: AJAX WebObjects Integration

2006-05-19 Thread Tokalak, Ahmet. D-IT2
I would be very glad if anybody can say how to run the DOJO HelloWorld example under WO. The URL of DOJO HelloWorld example: http://dojo.jot.com/WikiHome/Tutorials/HelloWorld Greetings, Ahmet > Von: Mike Schrag <[EMAIL PROTECTED]> > Datum: Fri, 19 May 2006 14:32:04 +0200 > An: "Tokalak, Ahmet,

RE: AJAX WebObjects Integration

2006-05-19 Thread Tokalak, Ahmet. D-IT2
-- Weitergeleitete Nachricht Von: "Tokalak, Ahmet. D-IT2" <[EMAIL PROTECTED]> Datum: Fri, 19 May 2006 14:40:48 +0200 An: Mike Schrag <[EMAIL PROTECTED]> Betreff: Re: AJAX WebObjects Integration Hi Mike, I'm primarily interested in general widgets and form widgets. I'm tired of trying to br

Re: WO Web Services + Cocoa

2006-05-19 Thread Philippe Lafoucrière
On 19 mai 06, at 14:16, Mike Schrag wrote: I just went through the pain of getting a cocoa client to call a WO Web Service. For anyone who would like to avoid this same pain, I wrote up the steps in the Wikibook: http://en.wikibooks.org/wiki/Programming:WebObjects/Web_Services/ Web_Servi

local date language

2006-05-19 Thread Frank Stock
Hi, How do I have to configure an Xserve (Tiger) to have all my dates localisted. I always get a date like 'Friday 19 may 2006' and i want this in duch 'Vrijdag 19 mei 2006'. I suppose it has somthing to do with the server because on my developer-machine it always works fine in duch. mvg

WO Web Services + Cocoa

2006-05-19 Thread Mike Schrag
I just went through the pain of getting a cocoa client to call a WO Web Service. For anyone who would like to avoid this same pain, I wrote up the steps in the Wikibook: http://en.wikibooks.org/wiki/Programming:WebObjects/Web_Services/ Web_Service_Provider#Consuming_with_WebServicesCore.fra

Re: Setting a Default toOne Relationship

2006-05-19 Thread David Avendasora
Hi Ken, The objects must get inserted upon instantiation. What would the point be of having a context that you don't use until you save the information to the database? Might just as well do direct JDBC calls then. According to the WebObjects Java Client Programming Guide (http:// develo

Re: Setting a Default toOne Relationship

2006-05-19 Thread Ken Anderson
On May 19, 2006, at 5:25 AM, David Avendasora wrote: On May 19, 2006, at 9:45 AM, Paul Lynch wrote: On 19 May 2006, at 09:35, David Avendasora wrote: I've been following the instructions in the WebObjects Java Client Programming manual (http://developer.apple.com/ documentation/WebObjec

RE: Problem with EOModeler JDBC connection on Windows XP (updated)

2006-05-19 Thread Sigurður Anton Ólafsson
Thank you guys.   Mr. Emmanuel Geze came up with a good solution, it worked:   ---   Hi;   you need "classes12.zip" and "nls_charset12.zip" that you can find on your Oracle client lib directory ($ORACLE_ROOT/ora92/jdbc/lib). You can copied them on $NEXT_ROOT/Library/Java direct

Re: Setting a Default toOne Relationship

2006-05-19 Thread David Avendasora
On May 19, 2006, at 9:45 AM, Paul Lynch wrote: On 19 May 2006, at 09:35, David Avendasora wrote: I've been following the instructions in the WebObjects Java Client Programming manual (http://developer.apple.com/documentation/ WebObjects/DesktopApplications/WODesktopApps.pdf) for "Enhancing

Re: Setting a Default toOne Relationship

2006-05-19 Thread Paul Lynch
On 18 May 2006, at 18:25, Ken Anderson wrote: Besides calling the set method in awakeFromInsertion(), I can't imagine what else there is to do. Of course, you need to get the EO in the correct editing context. Since the EC is passed into the awakeFromInsertion() method, you could: publ

Re: Setting a Default toOne Relationship

2006-05-19 Thread Paul Lynch
On 19 May 2006, at 09:35, David Avendasora wrote: I've been following the instructions in the WebObjects Java Client Programming manual (http://developer.apple.com/documentation/ WebObjects/DesktopApplications/WODesktopApps.pdf) for "Enhancing the Application" in which it describes several

Re: Setting a Default toOne Relationship

2006-05-19 Thread David Avendasora
I'm don't really know, I guess. I've been following the instructions in the WebObjects Java Client Programming manual (http://developer.apple.com/documentation/ WebObjects/DesktopApplications/WODesktopApps.pdf) for "Enhancing the Application" in which it describes several ways to modify a Di