Re: xcodebuild corrupts development builds?

2006-02-06 Thread Cara MacNish
Eventually worked it out. Some permissions problems, the xcodebuild etc must have changed them. Lucky I had such a useful error message to work with! :) Sorry to trouble your mail boxes. Cara On 07/02/2006, at 12:52 PM, Cara MacNish wrote: Hi, I developed a project (primarily web servic

xcodebuild corrupts development builds?

2006-02-06 Thread Cara MacNish
Hi, I developed a project (primarily web service) on MacOS X and it was all building and executing fine (many times). Then yesterday I built a deployment following the instructions for xcodebuild for split install as per the WebObjects Deployment Guide: xcodebuild install -configuration

Re: Help: How to use WOPopupButton

2006-02-06 Thread Mohapatra Ashish
Title: Re: Help: How to use WOPopupButton Hi Jim If you mean to get the id of selected country (object), you can do that by having defined a get method in your EO Class for that entity country. This still maintains the sanctity of the primary key properties by not allowing you to set it because

Re: multi user increment

2006-02-06 Thread Mohapatra Ashish
Hi Gino As you require a number that needs to be unique across all instances, you will have to maintain a number generator out of the WO Application. For this you may have to rely on a data generator at database level more than WO and then assign this new number from the database by using generato

EOModeler and OpenLDAP

2006-02-06 Thread Thomas B Winans
Can anyone point me to a demonstration application developed in java that integrates with OpenLDAP? I'm quite new to this, so the more basic the better ... Tom Winans ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev

Re: (no subject)

2006-02-06 Thread Art Isbell
On Feb 6, 2006, at 1:15 PM, Scott Winn wrote: Company (PK) company_id Relationship: Sellers (to Many) Seller (PK) seller_id (FK) seller_company_id seller_code Relationship: Company (to One) My code successfully gets a Company object from the data

Re: (no subject)

2006-02-06 Thread wojingo
Hi Scott, Scott Winn wrote: Hello WO Gurus, I need a good example of how to search my EOModeled database using relationships. Both of the books I have purchased have remarkably little to say on the subject. Here are the entities and their relevant attributes. . . Company (PK) comp

Re: search my EOModeled database using relationships.

2006-02-06 Thread Arturo Pérez
(Updated the subject to reflect the content.) You'll be particularly interested in the EOQualifier classes, and the EOUtilities filteredArray... and filterArray methods. You'ld also probably be well served to add a method to your Company class to encapsulate your particular filter logic and

Re: (no subject)

2006-02-06 Thread Michael Warner
be sure to study this:http://developer.apple.com/documentation/WebObjects/UsingEOModeler/Introduction/chapter_1_section_1.htmlMike WarnerOn Feb 6, 2006, at 6:15 PM, Scott Winn wrote:Hello WO Gurus, I need a good example of how to search my EOModeled database using relationships.  Both of the books

(no subject)

2006-02-06 Thread Scott Winn
Hello WO Gurus, I need a good example of how to search my EOModeled database using relationships.  Both of the books I have purchased have remarkably little to say on the subject.  Here are the entities and their relevant attributes. . . Company (PK) company_id Relationship: Sellers (to Many)Seller

Re: MySQLPlugIn.MySQLExpression bug?

2006-02-06 Thread Lachlan Deck
Hi there, On 06/02/2006, at 7:56 PM, Wolfram Stebel wrote: Am 06.02.2006 3:51 Uhr schrieb "Lachlan Deck" unter <[EMAIL PROTECTED]>: I get a JDBCAdaptorException: : Next exceptionSQL State:42000 -- error code: 1064 -- msg: You have an error in your SQL syntax. Check the manual that corresponds

Re: WebObjects Licensing

2006-02-06 Thread Denis Stanton
Hi Cliff (and Lachlan) A belated thank you for the detailed answers. My apologies for not responding sooner. It was a 3-day weekend here. I intended to comment on your answers and press for more clarification, but Mail has crashed three times while I tried to construct my reply. I'm goi

Re: multi user increment

2006-02-06 Thread James Cicenia
Most systems for no holes use an array of available numbers. Once you commit that number is no longer in the array, otherwise it stays in and is available for use. - James Cicenia On Feb 6, 2006, at 10:18 AM, Helge Staedtler wrote: oh, I must have overlooked that there was a restriction exi

Re: multi user increment

2006-02-06 Thread Helge Staedtler
oh, I must have overlooked that there was a restriction existing which said "without any holes". sorry. I would say, that a sequence without any holes can only be provided by a queuing machanism. I think a timestamp with milliseconds would do this in 99.99% of all cases. just an idea. have fun pla

Re: multi user increment

2006-02-06 Thread Guido Neitzer
On 06.02.2006, at 16:55 Uhr, Miguel Arroz wrote: That's not the right way to do this. Don't forget that, at EO level, you don't even know what are tables... worst, you may not lock them (unless writing SQL code directly, but that is NOT EO at all!). I know that it's not. You're absolute

Re: WebObjects Licensing

2006-02-06 Thread Cliff Tuel
> Is the expectation from Apple that the process we would follow (should we > want to "wotaskd deploy" on non MacOS-X boxes) is to pick the pieces out from > there and copy them onto the foreign deployment host? We don't ship a non-OS X installer, so there's no other way. Maybe a third-party o

Re: multi user increment

2006-02-06 Thread Miguel Arroz
Hi! That's not the right way to do this. Don't forget that, at EO level, you don't even know what are tables... worst, you may not lock them (unless writing SQL code directly, but that is NOT EO at all!). You should solve that at the DB level, with stored procedures, constraints, etc

Re: multi user increment

2006-02-06 Thread Guido Neitzer
On 06.02.2006, at 16:36 Uhr, Gino Pacitti wrote: What about the holding of a value in a table and doing a raw row fetch and if on committal there is a conflict alert user to change? I haven't done this. but what about a single table for that and lock the table (or the row) for a complete tr

D2WQuery and Rules Question

2006-02-06 Thread James Cicenia
OK - How about this thought anyone. Can I create a custom component and use the D2W rules to populate the query input fields? I need a solution or an approach to this problem desperately. Thanks James Cicenia ___ Do not post admin requests to

Re: multi user increment

2006-02-06 Thread Gino Pacitti
What about the holding of a value in a table and doing a raw row fetch and if on committal there is a conflict alert user to change? Gino On 6 Feb 2006, at 15:32, Guido Neitzer wrote: On 06.02.2006, at 16:08 Uhr, Helge Staedtler wrote: hmm, I would have a look at the primary keys. those are

Re: multi user increment

2006-02-06 Thread Guido Neitzer
On 06.02.2006, at 16:08 Uhr, Helge Staedtler wrote: hmm, I would have a look at the primary keys. those are ensured by EOF and the DB to be unique, so any number which is derived from the primarykey (you might e.g. transform an alphanumeric PK into a pure number key) should meet your criter

Re: multi user increment

2006-02-06 Thread Helge Staedtler
hi Gino, hmm, I would have a look at the primary keys. those are ensured by EOF and the DB to be unique, so any number which is derived from the primarykey (you might e.g. transform an alphanumeric PK into a pure number key) should meet your criteria. you could use e.g. EOUtilities.primaryKeyForO

Re: multi user increment

2006-02-06 Thread Geoff Hopson
Or (non-EOF solution)...Write a stored procedure to generate it in the DB, triggered on insert. Slap a unique constraint on column, catch exception and deal with.If you need this number in your EOF stack, don't forget to setRefreshesFetchedObjects on the fetchspec (or something like that). Might wo

Re: multi user increment

2006-02-06 Thread Patrick Middleton
On 6 Feb 2006, at 14:27, Gino Pacitti wrote: Hi All Any thoughts on how to address this problem I have a multi instance app that connects to a single data store. For any user, across the instances, I need to increment a numerical value newly for each new registered user. This then has to

multi user increment

2006-02-06 Thread Gino Pacitti
Hi All Any thoughts on how to address this problem I have a multi instance app that connects to a single data store. For any user, across the instances, I need to increment a numerical value newly for each new registered user. This then has to be saved back to the data store and for there t