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 >> >>

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

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", EOQualifier.QualifierOperatorN

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 wr

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 /System/Library/WebObj

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: Entity Modeler and Filemaker

2009-06-24 Thread Clark Mueller
re! :-) If you just need to work with a snapshot, 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 FileM

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 majority

Re: optimization/indexing

2008-12-18 Thread Clark Mueller
"comboTeamID" = 187 OR t0."comboTeamID" = 1000106 OR t0."comboTeamID" = 1000124 OR t0."comboTeamID" = 184 OR t0."comboTeamID" = 1000108 OR t0."comboTeamID" = 168 OR t0."comboTeamID" = 1000113 OR t0."comboTeamID"

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: nil in NSArray

2008-12-13 Thread Clark Mueller
Well, there might not be any technical limitation against having nulls in the list, but as far as a design decision in the API, I can think of reasons why you wouldn't want them. The most obvious is that by making the guarantee that it has no null pointers, you don't have to check for nulls

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 b

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
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 y

Re: You crossed editing context boundaries...

2008-10-14 Thread Clark Mueller
return 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

Re: You crossed editing context boundaries...

2008-10-14 Thread Clark Mueller
Click="submitTurns();" onMouseOver="cursor_pointer();" onMouseOut="cursor_default();"> Submit SelectCheck : WOCheckboxMatrix { list = turns; item = turno; selections = selectedItems; } Im just selecting the turns and then submitt

Re: You crossed editing context boundaries...

2008-10-14 Thread Clark Mueller
in a different editing context from what you are trying to save. But I think we need a more complete code listing to help. 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
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
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 : addObjectsToBothSidesOf

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"

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 us

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 abo

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

2008-01-21 Thread Clark Mueller
On 21 Jan 08, at 9:22 PM, Chuck Hill wrote: On Jan 21, 2008, at 7:57 PM, Clark Mueller wrote: That is a feeling I know well... :-( The ability to (easily) do something like ModalBox's behavior in WO is something I have felt is really lacking, so I'm a bit interested in p

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

2008-01-21 Thread Clark Mueller
ng that was just floating 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 J

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 trac

Re: Leopard & Xcode 3

2007-10-16 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, alon

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: http://worldofwebobjects.blogspot.com/2006/04/command-line-tool-for-fetc

Re: WOFileUpload + Safari 3 Beta

2007-08-09 Thread Clark Mueller
ying issues here? I've always been 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] : Exception o

Re: WOFileUpload + Safari 3 Beta

2007-08-06 Thread Clark Mueller
ed 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 WOFileUplo

Re: WOFileUpload + Safari 3 Beta

2007-08-06 Thread Clark Mueller
erlying issues here? I've always been 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:4

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] : Exception occurred while handling request: java.lang.IllegalStateException: No form data left for WOFileUpload! Clark

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): "$uploadFile" /> When the user clicks on the submit button, Saf

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 today_

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 ed

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 Do

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 firs

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 u

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

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

Re: Plug-ins

2007-03-19 Thread Clark Mueller
Custom implements client specific 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, 2

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

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 imp

Re: Xcode + WO book

2007-03-09 Thread Clark Mueller
rs and still am 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 dep

Re: Xcode + WO book

2007-03-09 Thread Clark Mueller
On Mar 9, 2007, at 8:45 AM, Clark Mueller wrote: 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_s

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=UTF8&s=books&qid=1173458222&sr=8-1 But

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

2007-02-18 Thread Clark Mueller
exist? Thanks, 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

Can't generate new primary keys *sigh*

2007-02-18 Thread Clark Mueller
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 to break. None of the traditional problems seem to

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 in

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

Fwd: WebObjects 5.3 Licensing Question (Again)

2007-01-23 Thread Clark Mueller
The issue that people keep having isn't a technical one, it's a legal one, because Apple won't say a word about it. My interpretation has been that yes, you are allowed to deploy on any platform with no license cost. The WO team has said that was their "intention" in the way the WO 5.3 lice

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 a

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 to

WebServerResources & subfolders

2007-01-01 Thread Clark Mueller
Hi everyone, I'm curious as to how WO actually works with WebServerResources that are nested in subfolders. Previously, I've been building projects with Xcode, resulting in all of my web server resources being flattened into one directory. Today, I've spent a lot of time messing around wi

Re: EOOrQualifier generated from an array

2006-12-25 Thread Clark Mueller
t tried to compile it, but hopefully you get the idea. 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

EOOrQualifier generated from an array

2006-12-24 Thread Clark Mueller
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 should generate an "or" qualifier string based on the elements of that array. Suppose, for example, that

Re: Xcode and WO development?

2006-12-11 Thread Clark Mueller
A wise man once said, "those of you who use Xcode - you're WRONG, but..." I forget what came after the "but". :-) Clark On 11 Dec 06, at 1:57 PM, Mike Schrag wrote: On Dec 11, 2006, at 3:53 PM, Calven Eggert wrote: I still use EOModeler b ___

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 s

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): - sub2R

Re: WOOutputPath causes launch hang (fixed)

2006-11-14 Thread Clark Mueller
I can tackle that one on my own. Thanks to Chuck, Mike, and Zak! Regards, Clark On 29 Oct 06, at 7:16 PM, Mike Schrag wrote: Are all of the expected files inside of Main.wo? .woo, .html, .wod? On Oct 29, 2006, at 8:32 PM, Clark Mueller wrote: I'm using the one out of dist, but Yes and

Re: WOOutputPath causes launch hang

2006-10-29 Thread Clark Mueller
om 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 to both to see

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

2006-10-29 Thread Clark Mueller
column definition it is not picking 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 si

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 colu

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, ). I'm composing this messag

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 th

Re: Many-to-many w/ one entity

2006-07-23 Thread Clark Mueller
atedProducts" relationship. Hope this helps! 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 Produ

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) mimick

Re: WWDC WO Meet

2006-07-08 Thread Clark Mueller
Some of us minors might like to come. :-) Clark On 8 Jul 06, at 4:34 PM, Chuck Hill wrote: It was in some Irish pub last year. We should aim for someplace larger this year so that it is not standing room only. Chuck P.S. It looks like it might make it after all! On Jul 8, 2006, at 12:04

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 2.2.

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 consequently

Re: Filemaker und WebObjects?

2006-02-24 Thread Clark Mueller
m Barnum wrote: If you run into any other issues with Filemaker, please post them here or send email to the WooF support team, we'll do our best to get them answered. Since WooF7 uses XML to query the database, there are some unexpected issues with regards to speed and equality searche

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

EOModel Xcode plug-in status in 5.3.1

2006-01-23 Thread Clark Mueller
Hi everyone, Just wondering if anyone has been using the Xcode data modeling plugin since 5.3.1's release... If so, what has been your general assessment? Is it stable? Are you finding it to be fully featured, and an aid in development? Or a hindrance, compared to EOModeler? It seems like

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

Re: So how is 5.3.1 looking?

2005-11-15 Thread Clark Mueller
I had noticed this as well - it seems to be a general Java issue, not just WO. I'd be surprised if it was intentional, but it does seem a pretty big bug to miss. I sincerely hope nobody at Apple was really so stupid as to think it was a good idea (and if they were, I feel no shame in callin

Re: 5.3.1 in XCode 2.2

2005-11-10 Thread Clark Mueller
Has anyone else seen in this build that source errors that show up in Java don't display inline, but only in the build output? Any solutions? I am seeing the proper functionality when creating new Cocoa projects and trying to build an Obj-C file with a syntax error in it, but Java source fi