Re: announcement

2010-04-22 Thread Clark Mueller
He's hiring! On Apr 22, 2010, at 12:44 PM, Mike Schrag wrote: Where's David den Boer when you need him? I'm guessing he would say the same :) Now we have a proper episode of the dating game! ms On Apr 22, 2010, at 3:21 PM, Guido Neitzer wrote: Yes, we are. Guido On 22. Apr,

Re: Database Tool

2009-12-21 Thread Clark Mueller
+1 for DBVisualizer. On 2009-12-21, at 7:50 AM, Calven Eggert wrote: What is everyone using to view/edit data in your databases (I'm using Oracle) on the Mac in Snow Leopard? Calven ___ Do not post admin requests to the list. They will be

Re: Do entities require a primary key?

2009-12-10 Thread Clark Mueller
If that is in fact a business rule, you'd be wise to create a unique constraint for those columns in the database as well so that you know for sure. That is, after all, what they're for. :-) Clark On Dec 10, 2009, at 11:30 AM, Johnny Miller wrote: Just checked it to make sure. And yes both

Re: Qualify data based on non-class property

2009-11-28 Thread Clark Mueller
Am I correct in assuming that sales.toCust() is a related EO? If so, you should be passing the name of the relationship as the key for the qualifier instead of the name of the foreign key, for example: EOKeyValueQualifier custQual = new EOKeyValueQualifier(cust,

Re: See SQL Results from Qualifier

2009-10-07 Thread Clark Mueller
Are you sure the form that contains your bindings is being correctly submitted? Clark On 2009-10-07, at 12:49 PM, Don Lindsay wrote: Oracle, and not using Wonder. Don On Oct 7, 2009, at 3:00 PM, Chuck Hill wrote: Which database? Using Wonder? On Oct 7, 2009, at 11:55 AM, Don Lindsay

Re: deploying across multiple app servers

2009-06-30 Thread Clark Mueller
Can't say that I use wotaskd currently, but don't you have to pass -D to set a property like that? e.g. -DWOSavesAdaptorConfiguration=true For what it's worth, this is what I use successfully as an Apache config file on my development box: LoadModule WebObjects_module

Re: Entity Modeler and Filemaker

2009-06-24 Thread Clark Mueller
You'd be happier if you went CamelCase, but I recommend against FileMaker + WO. There are lots of gotchas; the FileMaker JDBC driver is pretty weak. Clark On 2009-06-24, at 10:59 AM, Sherry Tirko wrote: Hello, I have to interface with a Filemaker database which has spaces in a

Re: Entity Modeler and Filemaker

2009-06-24 Thread Clark Mueller
, FrontBase has a FileMaker to FrontBase migration tool. That would give you a real SQL92 database to work with. Chuck On Jun 24, 2009, at 11:06 AM, Clark Mueller wrote: You'd be happier if you went CamelCase, but I recommend against FileMaker + WO. There are lots of gotchas; the FileMaker JDBC

Re: Entity Modeler and Filemaker

2009-06-24 Thread Clark Mueller
The (non-WooF) trick with that is that FileMaker doesn't even have a concept of specifying a primary key, just a unique key that auto- populates as a number. My solution was to generate a PK with EO_PK_TABLE and then prefix that value with some value so that there is no overlap with records

Re: optimization/indexing

2008-12-18 Thread Clark Mueller
Jeff, What does your model/database schema actually look like? Have you tried setting EOAdaptorDebugEnabled to true in your launch config (or via property)? How do the LOBs fit into your design? Clark On 18-Dec-08, at 7:41 PM, Jeff Schmitz wrote: By consider a different design, do you

Re: optimization/indexing

2008-12-18 Thread Clark Mueller
NSLog - 189 row(s) processed Dec 18 20:50:12 netBrackets[2001] (ERXNSLogLog4jBridge.java:46) DEBUG NSLog - === Commit Internal Transaction On Dec 18, 2008, at 9:52 PM, Clark Mueller wrote: Jeff, What does your model/database schema actually look like? Have you tried setting

Re: nil in NSArray

2008-12-13 Thread Clark Mueller
Cocoa Foundation has NSNull as JavaFoundation does, why not use that? The NSNull class defines a singleton object used to represent null values in collection objects (which don’t allow nil values). Clark On 13-Dec-08, at 4:40 PM, Mike Schrag wrote: OK -- So what's the official reason why

Re: nil in NSArray

2008-12-13 Thread Clark Mueller
Oh, I see. You wanted explanation. :-) I suppose that if nothing else it would be for historical reasons, but I was under the impression there was a point to NSNull. Specifically, aren't there scenarios where you might want to distinguish a null pointer from querying for the presence of a

Re: nil in NSArray

2008-12-13 Thread Clark Mueller
And yeah... I guess that example is specific to NSDictionary. In NSArray's case... something to do with NSKeyValueCoding conformance maybe? Clark On 13-Dec-08, at 6:39 PM, Clark Mueller wrote: Oh, I see. You wanted explanation. :-) I suppose that if nothing else it would

Re: You crossed editing context boundaries...

2008-10-14 Thread Clark Mueller
You need to get a local copy of the object in the editing context where you are trying to make the relationship. Have a look at EOUtilities.localInstanceOfObject(ec, object). Clark On Oct 14, 2008, at 2:09 PM, WebObjects wrote: Hello, Im trying to use this method :

Re: You crossed editing context boundaries...

2008-10-14 Thread Clark Mueller
Gus, Sorry, I think I skimmed over your original e-mail a bit quickly. Can you provide a more complete code listing? Clark On Oct 14, 2008, at 2:34 PM, WebObjects wrote: On Oct 14, 2008, at 4:13 PM, Clark Mueller wrote: You need to get a local copy of the object in the editing context

Re: You crossed editing context boundaries...

2008-10-14 Thread Clark Mueller
even funny the error, like hey you idit you cross the boudaries hehehe Gus On Oct 14, 2008, at 5:10 PM, Clark Mueller wrote: Gus, Sorry, I think I skimmed over your original e-mail a bit quickly. Can you provide a more complete code listing? Clark On Oct 14, 2008, at 2:34

Re: You crossed editing context boundaries...

2008-10-14 Thread Clark Mueller
null; } However, I think you probably don't... Most likely you're looking for something more like David's solution, but it depends on the behavior you want... Clark On Oct 14, 2008, at 3:35 PM, Clark Mueller wrote: I would say the last method should look more like this. public WOComponent

Re: Strange Red X's in Eclipse

2008-05-14 Thread Clark Mueller
The X's appear when you delete the files. This is to show you what files have been deleted since your last commit. If you recommit to your SVN repo, it will be normal again. Clark On 14 May 08, at 11:27 PM, Owen McKerrow wrote: Hi All, Well I've finally jumped ship and am starting to use

Re: Strange Red X's in Eclipse

2008-05-14 Thread Clark Mueller
Unless of course you wanted those back, which you did. :-) On 14 May 08, at 11:51 PM, Clark Mueller wrote: The X's appear when you delete the files. This is to show you what files have been deleted since your last commit. If you recommit to your SVN repo, it will be normal again. Clark

Re: Bringing back the dev tools

2008-02-23 Thread Clark Mueller
Seriously, give it up... try Eclipse for more then ten minutes at a sitting, and you will learn to love the productivity boost it offers. The old tools WILL actually permanently stop working one day. Clark On 23 Feb 08, at 1:47 AM, Thomas wrote: Dave, I'm interested, but I'm wondering

Re: Popping-up a window and updating original page: how?

2008-01-21 Thread Clark Mueller
Chuck, I am curious, have you explored this project any further? Cheers, Clark On 22 May 07, at 12:13 PM, Chuck Hill wrote: I am (was) working on an AJAX modal dialog / wizard / not quite sure where it will go solution for this (to be part of the Ajax framework in Wonder). I got side

Re: Popping-up a window and updating original page: how?

2008-01-21 Thread Clark Mueller
around in your head? Do you have any code that you'd be willing to share? Clark On 21 Jan 08, at 8:26 PM, Chuck Hill wrote: It is still on the list and I am still side tracked. :-( Some days it feels like I am running up a hill of loose sand. Chuck On Jan 21, 2008, at 7:13 PM, Clark

Re: Leopard Xcode 3

2007-10-17 Thread Clark Mueller
If you're a Select developer, you can download the seeds and see for yourself. :-) Although the public update that was mentioned at WWDC never did materialize... Clark On 16 Oct 07, at 11:01 PM, Thomas wrote: The public Apple site says that WebObjects 5.4 is part of Leopard Server,

Re: die terrible error message

2007-09-28 Thread Clark Mueller
Point of curiosity - is new NextPage(context()) functionally the same as pageWithName(NextPage)? I had always assumed that pageWithName() did extra initializations, but I would love to know if that's not the case. Clark On 27 Sep 07, at 6:44 PM, Mike Schrag wrote: I'm preserving this

Re: just a reminder

2007-09-25 Thread Clark Mueller
I think that could have been done in WebObjects in the amount of time it took to scroll to the bottom of the page... On 25 Sep 07, at 1:16 PM, Mike Schrag wrote: http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/tutorial.html of what you COULD be doing :)

Re: How to invoke WebObjects from another Java Project

2007-09-16 Thread Clark Mueller
When you say WebObjects, do you mean EOF? If you only want to use the object-relational parts of WO from Java, that doesn't need to be an elaborate process per se. There's a very lightweight example of doing so here:

Re: WOFileUpload + Safari 3 Beta

2007-08-09 Thread Clark Mueller
to dig. Mark On Aug 1, 2007, at 10:00 PM, Clark Mueller wrote: I should also mention... my enctype is set to multipart/form- data, and I get a stack trace that says: [2007-08-01 19:59:46 MDT] WorkerThread0 com.webobjects.appserver._private.WOComponentRequestHandler: Exception occurred while

Re: WOFileUpload + Safari 3 Beta

2007-08-06 Thread Clark Mueller
curious, but never had time to dig. Mark On Aug 1, 2007, at 10:00 PM, Clark Mueller wrote: I should also mention... my enctype is set to multipart/form- data, and I get a stack trace that says: [2007-08-01 19:59:46 MDT] WorkerThread0 com.webobjects.appserver._private.WOComponentRequestHandler

Re: WOFileUpload + Safari 3 Beta

2007-08-06 Thread Clark Mueller
as locked. I unlocked the folder, and it works perfectly now. Bizarre... Thanks much, Clark On 2 Aug 07, at 11:36 AM, Chuck Hill wrote: Hi Clark, On Aug 1, 2007, at 6:56 PM, Clark Mueller wrote: Hi there, Is anyone else experiencing problems with the Safari 3.0.2/3.0.3 beta and WOFileUpload? I

WOFileUpload + Safari 3 Beta

2007-08-01 Thread Clark Mueller
Hi there, Is anyone else experiencing problems with the Safari 3.0.2/3.0.3 beta and WOFileUpload? I have the following in my wod file (fileData is an NSData object and filePath is a String): p wo:WOFileUpload data = $fileData filePath = $filePath / /p p

Re: WOFileUpload + Safari 3 Beta

2007-08-01 Thread Clark Mueller
I should also mention... my enctype is set to multipart/form-data, and I get a stack trace that says: [2007-08-01 19:59:46 MDT] WorkerThread0 com.webobjects.appserver._private.WOComponentRequestHandler: Exception occurred while handling request: java.lang.IllegalStateException:

Re: WOBuilder Replacement

2007-07-06 Thread Clark Mueller
Stampede++ :-) On 6 Jul 07, at 2:10 PM, Guido Neitzer wrote: On 06.07.2007, at 13:35, David LeBer wrote: And the pony? I specifically asked for a pony! Come to Calgary - it's Stampede week now, you might find one you like ... ;-) cug, saw lots of horses

Re: WOBuilder Replacement

2007-07-05 Thread Clark Mueller
I was one of those who raised his hand - but honestly, I no longer feel the same way, so it's even fewer than those few. Having digested some of this discussion going on for the past several days, I've arrived at the conclusion that, as many people have indicated, the current WOComponent

Re: EOGenerator + BigDecimal prototypes

2007-06-30 Thread Clark Mueller
John Lachlan, Don't know why my messages take so long to hit the list, but I had actually gotten this resolved. I rebuilt my prototypes based on the latest version of ERPrototypes, and everything started working again. I noticed there was a change to the name of the Postgres prototypes,

EOGenerator + BigDecimal prototypes

2007-06-25 Thread Clark Mueller
Hi everyone, I have a model which I've been working on switching over to PostgreSQL. I've been using a set of prototypes based on ERPrototypes, but they are my custom version, not from CVS. I'm having issues with the 'amount' type under PostgreSQL. EOGenerator generates all of these as

Re: [Announce] WOWODC 2007

2007-04-17 Thread Clark Mueller
This sounds fantastic - I will be doing my absolute best to attend, but regardless, thanks very much to everyone who took the time to organize this! Clark On 17 Apr 07, at 1:49 PM, Pascal Robert wrote: Hello everyone, with great pleasure, the WOWODC people are happy to announce our

Re: Updating Nested To-Many Relationship

2007-04-09 Thread Clark Mueller
You can also have a look at some more in depth discussion of this topic on the WikiBook: http://en.wikibooks.org/wiki/Programming:WebObjects/EOF/Using_EOF/ Caching_and_Freshness Clark On 9 Apr 07, at 9:06 AM, Zak Burke wrote: David Avendasora wrote on 4/5/07 2:32 PM: I want to allow the

Re: (no subject)

2007-04-08 Thread Clark Mueller
Dan, That looks like a very large, very negative, very wrong value to me, considering the column it belongs to is birthday. What does other data look like in that column in the database? Are there any problems reading this record type from WebObjects? Where is that data coming from (e.g.

Plug-ins

2007-03-19 Thread Clark Mueller
Hey everybody, I'd like to build some flavor of plug-in architecture for an application that is used by a few clients, some of whom have very specific needs. I would basically like to just re-implement whole components from my application on a case-by-case basis, and I want the custom

Re: Partially saving the object graph. How? (Jean Pierre Malrieu)

2007-03-19 Thread Clark Mueller
Jean, I think it might be easier if you gave us a more specific context for what you're doing. This need doesn't make a lot of sense to me. If we knew why that were necessary, we might be able to help you think of a better solution. :-) That having been said, I think you might be able to

Re: Plug-ins

2007-03-19 Thread Clark Mueller
subclasses of these. The App can me mostly empty. It is not in GVC.SiteMaker, but it could be could be. The contents of Custom.framework are found automagically. This does not cover WebServer Resources, as I don't use them. :-) Chuck On Mar 19, 2007, at 9:45 AM, Clark Mueller

Re: Plug-ins

2007-03-19 Thread Clark Mueller
I've tried this out and refactored my app, and it looks like this solution will do exactly what I need. Thanks Chuck! Clark On 19 Mar 07, at 1:03 PM, Chuck Hill wrote: On Mar 19, 2007, at 11:58 AM, Clark Mueller wrote: Chuck, So what I'm looking for then is something like

Re: Xcode + WO book

2007-03-09 Thread Clark Mueller
I don't know if (how?!) I missed this development or what, but if you search for WebObjects on Amazon, you can find this book: http://www.amazon.com/Beginning-Xcode-WebObjects-Novice-Professional/ dp/1590596838/ref=pd_bbs_sr_1/103-0474734-2331059? ie=UTF8s=booksqid=1173458222sr=8-1 But not

Re: Xcode + WO book

2007-03-09 Thread Clark Mueller
Select member. Kieran On Mar 9, 2007, at 11:45 AM, Clark Mueller wrote: Also, I would really recommend an ADC select membership. I found the ADC on iTunes WO fundamental sessions from WWDC (past present) to be very helpful, but that was, of course, prior to the deprecation of Apple's

[solved, sort of] Re: Can't generate new primary keys *sigh*

2007-02-18 Thread Clark Mueller
, Clark On 18 Feb 07, at 1:25 PM, Clark Mueller wrote: Hi all, I'm getting the evil failed to generate new primary keys error all of a sudden. I use MySQL 5 with the latest JDBC adaptor. I recently changed the PK type of one of my entities to be textual, and it caused several other entities

PostgreSQL SQL generation

2007-01-26 Thread Clark Mueller
Hi all, I have been tinkering with PostgreSQL, and would like to try using it with a WO project. I'm running into an odd problem when trying to generate SQL out of Entity Modeler, which is that commands like this sequence of commands fail: CREATE TABLE customer_note (customer_id int4 NOT

Re: Here's one newbie trap to avoid

2007-01-26 Thread Clark Mueller
Scott, It doesn't throw, it just returns an empty array... which IMO generally makes good sense. Regards, Clark On 26 Jan 07, at 5:36 PM, Chuck Hill wrote: All of the EOUtilities.objectsWith (note plural objects) don't throw an exception if zero rows are returned. This is documented

Re: WOBuilder in the future of WO?

2007-01-22 Thread Clark Mueller
I keep hearing the phrase's once I converted my projects and once I got use to Eclipse/WOLips. That's a really big problem for a lot of us who REALLY DON'T HAVE THE TIME! We don't have the month or more to figure out and acclimate ourselves to Eclipse/WOLips and painstakingly convert all

Re: WOBuilder in the future of WO?

2007-01-21 Thread Clark Mueller
The interesting thing about OG's graphing is that someone actually spent some time working on it for the most recent release of OG, to the point that it actually maps attributes now (where previously it only did the entity names). It would be nice if OG were to pop up a window asking how

Re: EOOrQualifier generated from an array

2006-12-25 Thread Clark Mueller
. Just create the fetch spec with finalQualifier. Ken On Dec 25, 2006, at 2:25 AM, Clark Mueller wrote: Hello all, I have a question about fetch specs, and use of arrays as an argument (or not). To me, it seems like intuitive behavior that passing an array as an argument to a fetch spec

Single table inheritance and non-null attributes

2006-11-30 Thread Clark Mueller
Hello, i've been playing with single table inheritance today, and I've run across something that I'm curious about. It appears that if I define entities like so: Super: - id (not null) - qualifier (not null) Sub1 (qualifier = 1): - sub1RequiredAttr (not null) Sub2 (qualifier = 2): -

Re: Single table inheritance and non-null attributes

2006-11-30 Thread Clark Mueller
I'd definitely be interested... because I noticed that it does the same thing, so I assumed there's some reason in particular that it's done that way. :-) What's the workaround? Thanks, Clark On 30 Nov 06, at 3:22 PM, Guido Neitzer wrote: Am 30.11.2006 um 22:12 schrieb Clark Mueller

Bad SQL (no SQL!) for derived columns

2006-10-29 Thread Clark Mueller
Howdy,i'm having an issue with a project that I've been converting to MySQL (from OpenBase). Something that has come up since testing against MySQL is that the select query for a derived column does not appear to be generating the correct SQL... it generates a blank column name for the derived

Re: Bad SQL (no SQL!) for derived columns

2006-10-29 Thread Clark Mueller
up the column name somehow. Open the model in EOModeler and check there too.On Oct 29, 2006, at 4:40 AM, Clark Mueller wrote:Howdy,i'm having an issue with a project that I've been converting to MySQL (from OpenBase). Something that has come up since testing against MySQL is that the select query

Re: WOOutputPath causes launch hang

2006-10-29 Thread Clark Mueller
: Just to be sure, you're using the woa from the dist folder and not the woa from the build folder, right? And there's no Main.wo in dist/RepairStatus.woa/Contents/WebServerResources like the error message alludes to? ms On Oct 29, 2006, at 5:58 PM, Clark Mueller wrote: I had added them

Re: New .Mac Webmail remains a WO app!

2006-10-26 Thread Clark Mueller
I am thrilled! Clark On 26 Oct 06, at 7:01 PM, Art Isbell wrote: I believe I recall someone wondering whether the new .Mac Webmail would remain a WO app. One need wonder no more (for the English version, http://www.mac.com/1/webmail.html). I'm composing this message

Re: [SOLVED]Please Help!!! WebService wooes!

2006-10-16 Thread Clark Mueller
Ute, The version of Axis included with WO changes in WO 5.3 to be Axis 1.1. Between the differences of Axis 1.0 and 1.1 and the calls that WOWebServices makes to it, that could definitely cause some problems. I ran into a similar problem with JDK 1.5 and Axis 1.4. In that case, I think

Re: Many-to-many w/ one entity

2006-07-23 Thread Clark Mueller
! Regards, Mark On Jul 22, 2006, at 10:20 PM, Clark Mueller wrote: All, I'm trying to create a many-to-many relationship with a single entity. Essentially, what I'm doing is trying to show related products for a Product entity. EOModeler certainly won't model this one. I have tried to model

Many-to-many w/ one entity

2006-07-22 Thread Clark Mueller
All, I'm trying to create a many-to-many relationship with a single entity. Essentially, what I'm doing is trying to show related products for a Product entity. EOModeler certainly won't model this one. I have tried to model it myself (both in OpenBase directly, and in EOModeler)

Re: Code sense w/ Xcode 2.2 (2.x?)

2006-04-07 Thread Clark Mueller
I've been splitting up a project that has begun to grow into frameworks. Something I've been running into problems with is that Code Sense isn't working among projects, and I'd really love to actually take advantage of CS with the foundation classes and EOF classes as well. For XCode

Code sense w/ Xcode 2.2 (2.x?)

2006-04-05 Thread Clark Mueller
Hi everyone, I've been splitting up a project that has begun to grow into frameworks. Something I've been running into problems with is that Code Sense isn't working among projects, and I'd really love to actually take advantage of CS with the foundation classes and EOF classes as well.

Re: Coca Enterprise Objects Application

2006-02-26 Thread Clark Mueller
I filed a bug on this back in November, #4354310. It's currently marked as a duplicate. All indications are that Apple isn't interested in Cocoa-EO anymore, which I think is extremely disappointing. But considering that WebObjects 5 included the removal of Objective-C support, and that

Re: Filemaker und WebObjects?

2006-02-09 Thread Clark Mueller
Ute, I have used WO to interface with FileMaker on a couple of occasions. If you search the list archives, you'll find a brief exchange from me previously on the topic. Woof has only recently been upgraded to work with FileMaker 7 databases, so I haven't tried it out yet, but my rules of

Customize application not found error

2005-12-23 Thread Clark Mueller
Hi everybody, I've gotten around to caring about something that I previously have not been too concerned about: The requested application has not been found on this server error, and how I might go about customizing that. I know about the Redirection URL property in the adaptor settings