Re: model insights (inheritance)

2015-10-28 Thread Alexander Spohr
One Entity for person. If you have more than 2-3 attributes in Employee or Donar make them own entities as well otherwise just put the attributes into Person. An Employee might become a Donar anyway ;) Subclassing in the model tends to give you problems later on. atze > Am 28.10.2015

Re: Dependent popup

2015-07-23 Thread Alexander Spohr
Am 22.07.2015 um 20:08 schrieb HOUNKPONOU Ronald ronald.hounkpo...@gmail.com: For your previous sugestion : If i do it like (each update container has to close and surround its object), then only one chlid popup will be updated on a parent popup change (That is actually what i have).

Re: EOFetchSpecification - sorting by partial date

2015-07-14 Thread Alexander Spohr
Without having read this thread, I would assume you’ll need EOSortOrdering with your EOFetchSpecification. Am 14.07.2015 um 21:20 schrieb Theodore Petrosky tedp...@yahoo.com: wow this is great! and I even understand the ‘Derived’ selection now. I still don’t see how to set the sort

Re: How to pass confidential information with WORedirect.

2015-06-30 Thread Alexander Spohr
Use ssl. And hire someone who knows about the internet. Am 30.06.2015 um 13:40 schrieb Butchi Reddy Velagala v.butchire...@gmail.com: Hi Wick, I need to pass some values(confidential values) to that URL. Please let me know how to do that. Thanks, Butchi Reddy. On Tue,

Re: ec.saveChanges in repartition table

2014-09-04 Thread Alexander Spohr
Is propagate primary key on in the source key tables? Am 04.09.2014 um 08:27 schrieb Raymond NANEON rnan...@me.com: Hello List, I have an issue with a primary key on a repartition table. Indeed, the primary key for this table has two foreign keys. When I save the data in the

Re: Clustered Databases

2014-07-21 Thread Alexander Spohr
Am 21.07.2014 um 16:14 schrieb Calven Eggert cegg...@uhnresearch.ca: I've also been told that this is a FQDN. (whatever that is) Fully Qualified Domain Name. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing

Re: Redirect from Spring MVC application to WebObjects application

2014-07-16 Thread Alexander Spohr
Write a direct action that you can call from the other app. Am 16.07.2014 um 08:21 schrieb Raghavender Bokka raghavender.bo...@prithvisolutions.com: Hello Michael, If the new tab is closed then the user will be back to the existing WebObjects application tab, this if fine, but my

Re: Redirect from Spring MVC application to WebObjects application

2014-07-16 Thread Alexander Spohr
(within the same existing application screen tab) from the other app, or will the direct action will open up a new URL in a separate tab or window? Thanks, Raghu. On 16-Jul-2014, at 2:02 PM, Alexander Spohr wrote: Write a direct action that you can call from the other app. Am

Re: target folder is not working.

2014-07-14 Thread Alexander Spohr
- Posting the same message twice will not bring any help faster. - The error message tells you exactly what your problem is: CPCompBatchHeader name: CPCompBatchHeader subcomponents: null ; } valueForKey()]: lookup of unknown key: 'compName' This WOComponent does not have an instance variable

Re: permanentGlobalID not permanent

2014-05-08 Thread Alexander Spohr
Am 08.05.2014 um 05:36 schrieb Jean-François Veillette jean_francois_veille...@yahoo.ca: Here is the code for the setter: public void setReference(final ERXGenericRecord ref) { EOKeyGlobalID pgid = ref.permanentGlobalID();

Re: permanentGlobalID not permanent

2014-05-08 Thread Alexander Spohr
Forget my post. I misunderstood your problem. Sorry for the noise. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription:

Re: Fetch spec capabilities

2014-05-02 Thread Alexander Spohr
You could do it using GROUP BY HAVING COUNT with count being the number of categories. I implemented a EOGroupByQualifier some years ago. I don’t think it made it into Wonder. Am 02.05.2014 um 11:54 schrieb Elizabeth Lynch l...@plsys.co.uk: I've got a query which could be dealt with by

Re: Cascade delete when no relationship: how?

2014-03-20 Thread Alexander Spohr
Am 19.03.2014 um 21:40 schrieb Ramsey Gurley rgur...@smarthealth.com: Create the relationship but don’t make it a class property. +1 Always create the reverse! If you don’t need it in your object, switch it off. EOF can still make use of it. ___

Re: ERXObjectStoreCoordinator dispose not releasing database connection?

2014-03-13 Thread Alexander Spohr
On Mar 13, 2014, at 8:40 AM, John Pollard j...@pollardweb.com wrote: Hi List, I have noticed that the database connections (seen using show processlist within mysql) are not being released. I create my own ERXObjectStoreCoordinator and this results in two new mysql connections

Re: Using type=image on WOSubmitButton

2014-03-11 Thread Alexander Spohr
Would WOImageButton do what you need? Am 11.03.2014 um 13:17 schrieb John Pollard j...@pollardweb.com: Hi List, I am displaying a button with my own image from a webserver image resource file by setting type=image and src=path/to/file.jpg on WOSubmitButton. If I set the src attribute,

Re: Starting second instance=app not available

2014-03-04 Thread Alexander Spohr
Am 04.03.2014 um 09:30 schrieb Jeffrey Schmitz j...@netbrackets.com: port = 2003; runningState = DEAD Who started the instances? Are they on the right port? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing

Re: Multi-machine deployment - only one instance receiving requests

2014-01-17 Thread Alexander Spohr
Does your Apache know of the second machine? what does http://xx.xx.xx.xx/cgi-bin/WebObjects/WOAdaptorInfo say? Am 17.01.2014 um 00:40 schrieb Ken Anderson kenli...@anderhome.com: All, I’m trying to setup a load balancing setup between 2 machines, but only the machine where apache lives

Re: Multi-machine deployment - only one instance receiving requests

2014-01-17 Thread Alexander Spohr
Am 17.01.2014 um 12:46 schrieb Ken Anderson kenli...@anderhome.com: When I try to go to the WOAdaptorInfo URL, I get “The requested application was not found on this server”. So, not sure how to get that working… Please show your link. ___ Do

Re: Need help in building a pretty complex EOQualifier

2013-12-12 Thread Alexander Spohr
Hi Markus, you need a GROUP BY HAVING COUNT because one DocumentText can not satisfy your qualifier. Unfortunately this does not work with a common qualifier. I once modified PostgresqlExpression to allow for a GROUP BY: // added by atze to support GROUP BY public void

Re: I am trying to create a WOHyperlink inside a WORepetition null target WOComponent

2013-11-01 Thread Alexander Spohr
I bet resultsList is null when the request comes back. Am 01.11.2013 um 02:05 schrieb Thomas Peters thomasg_pet...@msn.com: I have the following… This should be working… the movie that is getting passed to setMovie on the MovieDetails method is null. The WOHyperLink id inside the

Re: Session timeout when performing an action

2013-10-15 Thread Alexander Spohr
Did you check /WebObjects/WOAdaptorInfo? What is the dead time? Do you see a lot of active requests? Am 14.10.2013 um 15:26 schrieb Schoenenberger Dominique dominique.schoenenber...@nagra.com: Thanks, My parameters are (bigger): HTTP Adaptor Settings: Load Balancing scheme: Round

Re: Session timeout when performing an action

2013-10-10 Thread Alexander Spohr
Am 10.10.2013 um 09:42 schrieb Schoenenberger Dominique dominique.schoenenber...@nagra.com: It's like the adaptor (?) gives the request to the wrong instance. Yes. Instance 12 may be offline or not reachable (responds too slow) ___ Do not post

Re: Using UNION in EOFetchSpecification

2013-10-06 Thread Alexander Spohr
Am 05.10.2013 um 23:43 schrieb Raymond NANEON rnan...@me.com: I want to use UNION in two EOFetch but I don't know how to do it. Not sure what you mean by using union. I can only guess :) Did you try EOFetchSpecification.setUsesDistinct(true)? atze

Re: Slow response time

2013-09-13 Thread Alexander Spohr
Am 12.09.2013 um 19:12 schrieb Beall, Mark (HPSL) mark.be...@hp.com: Thanks Samuel and Ramsey for your responses. We do have a large data base so copying the data base is not a good option for us. I will check into the prefetch option. I know we use it but maybe not in all

Re: WOResponse large http file download

2013-01-18 Thread Alexander Spohr
I think you are wrapping around maxint. Your example code is incomplete. It can not work... Am 18.01.2013 um 09:58 schrieb niek niek.verva...@vit2print.com: Hi all, I'm experiencing a problem when trying to download files larger than 4GB over http but only a part is downloaded. When I

Re: understanding an Object?

2013-01-15 Thread Alexander Spohr
Am 15.01.2013 um 14:19 schrieb Theodore Petrosky tedp...@yahoo.com: I successfully have my popup version updating the bound object(). Is your object() an EO? However, how do I tell it as an EO so that it is faulted and updates itself on saveChanges(). You don’t. It knows. Meaning, the

Re: Binary Plist generation very slow

2012-12-10 Thread Alexander Spohr
binary) generate the same output (using tabs instead of spaces): -rw-r--r-- 1 atze atze 6819317 10 Dez 15:39 3500Attacks.plistx -rw-r--r-- 1 atze atze 6819317 10 Dez 15:39 3500Attacks.plisty Am 06.12.2012 um 11:16 schrieb Alexander Spohr a...@freeport.de: Hi List, we tried

Re: WOComponent Function Call Order

2012-12-10 Thread Alexander Spohr
WO runs from to to bottom of your page. So it should work. A better way would be to do the calculations in appendToResponse() before you call super. Then all will be set before the page is rendered. If you can not do that because of your loop, you could do it in the displayedObjects call. Or in

Binary Plist generation very slow

2012-12-06 Thread Alexander Spohr
Hi List, we tried to switch from string based plists to binary ones. The clients love it but it almost kills the servers. The binary plist generation is 26 times slower (for my test case): Duration: 2881 ms NSPropertyListOpenStepFormat Duration: 75008 ms NSPropertyListBinaryFormat_v1_0 Does

Re: Automatic Long (8 byte) Primary Key?

2012-10-21 Thread Alexander Spohr
Am 19.10.2012 um 11:44 schrieb Alexander Spohr a...@freeport.de: I need an entity to have a long (8 byte) primary key. How do I tell EOF to generate it from a sequence as it does with 4 byte keys? Now this gets strange. I changed the pk to prototype id (int4) because I could not get EOF

Re: Automatic Long (8 byte) Primary Key?

2012-10-21 Thread Alexander Spohr
Shame on me. I had a propagate primary key in a relationship to Gear. Sorry for the noise. atze Am 21.10.2012 um 12:45 schrieb Alexander Spohr a...@freeport.de: Am 19.10.2012 um 11:44 schrieb Alexander Spohr a...@freeport.de: I need an entity to have a long (8 byte) primary key

Automatic Long (8 byte) Primary Key?

2012-10-19 Thread Alexander Spohr
Hi List, I need an entity to have a long (8 byte) primary key. How do I tell EOF to generate it from a sequence as it does with 4 byte keys? atze ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Migrating from EOF to Cayenne

2012-07-12 Thread Alexander Spohr
We want to go the WO-way and are asking us how we can make that way bring us into the future. You propose to switch to a different lane and have us all run into another direction. That is a totally different discussion. We don’t want to change our way of programming, we just want the core to

Re: NSData could not cast to Long

2012-06-25 Thread Alexander Spohr
What is your question here? Why a java.lang.Long is not a com.webobjects.foundation.NSData? Answer: Because casting does not magically turn a Long into an NSData maybe? Your array contains Longs, not NSDatas. atze PS. please read the text of the exception yourself. Am 25.06.2012 um

Re: Model/application development layout request for comment

2012-04-03 Thread Alexander Spohr
We have the configs in the same directory as the woa. Each app has multiple instances. They are choosen on the apps name in Monitor, using the same App.woa for all of them: App-DE - gets its data from directory App-DE.config/ App-NL - gets its data from directory App-NL.config/ App-UK - gets

Re: Scheduling not at full hours?

2012-02-28 Thread Alexander Spohr
As nobody seems to have an answer, could someone point me to the sources of wotaskd? Are they available? I couldn’t find them. Wonder seems to have just some classes but uses a framework that I can’t find in the source of. atze Am 26.02.2012 um 21:05 schrieb Alexander Spohr: Hi list

Scheduling not at full hours?

2012-02-26 Thread Alexander Spohr
Hi list, we have a rather large WO installation. The servers usually have a load of 4 which is pretty low for these machines. We schedule our apps every four hours. As we are running 80 instances per server 20 of them restart at the same time: 1:00 App1-Inst1 1:00 App2-Inst1 2:00 App1-Inst2 2:00

Re: Timestamps and Oracle

2012-02-25 Thread Alexander Spohr
We always store times without any time zone in the database. WO and Java use UTC and the client then converts that to local time (whatever that is). Just works (for us). atze Am 23.02.2012 um 02:32 schrieb Alexis Tual: Hi list, looks like moving to GMT+11 timezone gives you a nice

Re: Limit to the number of instances under JavaMonitor

2012-02-06 Thread Alexander Spohr
Am 04.02.2012 um 18:48 schrieb David Holt: Does anyone know if there is a limit to the number of instances you can run under JavaMonitor? Is it a fixed limit, or a configuration? I seem to have hit it. There is a limit in the WebObjects adaptor but that only hits the web server. My new

Re: Weird Behaviour...

2011-12-06 Thread Alexander Spohr
Hm, should we all put that in our apps then? Or is it fixed in 5.4 or Wonder? Am 06.12.2011 um 15:35 schrieb Calven Eggert: Andrew, THANK YOU, THANK YOU, THANK YOU!!! This was exactly what was happening in my case and by simply adding this: public WOResponse

Re: Weird Behaviour...

2011-12-05 Thread Alexander Spohr
How is your optimistic locking set up? Anything else than the primary key? atze ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your

Re: [SOLVED]: Is JDBCAdaptor generating the wrong SQL for fixed length character columns?

2011-11-10 Thread Alexander Spohr
Hi Chuck, you have to use useBundledJdbcInfo=true with PostgreSQL. Otherwise your PostgreSQLAdaptor will hold an open transaction into the database. That will prevent commits from getting closed and written (kicking the old values), therefore bloating your database and finally kill your

Re: Changed behavior after Wonderization

2011-11-07 Thread Alexander Spohr
Am 07.11.2011 um 09:08 schrieb Frank Gibau: The System is right: this number is missing. Then either your data(base) or your EOModel is broken. atze ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing

CLOSE_WAIT when database is offline

2011-10-17 Thread Alexander Spohr
Hi list, we have a rather busy WO-service. Sometimes one of our multiple database servers fails and CLOSE_WAIT shows its ugly head and kills the performance. What I think the problem is: - WebServer asks AppServer for data - AppServer tries to connect to db - more requests come in - AppServer

Re: CLOSE_WAIT when database is offline

2011-10-17 Thread Alexander Spohr
, Alexander Spohr a...@freeport.de wrote: Hi list, we have a rather busy WO-service. Sometimes one of our multiple database servers fails and CLOSE_WAIT shows its ugly head and kills the performance. What I think the problem is: - WebServer asks AppServer for data - AppServer tries

Re: Finding WO people for startups

2011-09-26 Thread Alexander Spohr
Am 26.09.2011 um 07:39 schrieb John Huss: Cayenne + Tapestry We tried it some years ago (it might have evolved) in a larger project (customer did not want WO) but it was not ready. And every new release broke some APIs... Back to Marius' question: As WO evolved from Cocoa you could try to

Re: path to filter a relationship

2011-09-06 Thread Alexander Spohr
Am 06.09.2011 um 16:07 schrieb Theodore Petrosky: maybe i am thinking way too hard on this. Yes. instead of using the complete list like this list = theEmploymentTitle.employees; make a method filteredEmployees() that return

Re: formValueForKey

2011-09-02 Thread Alexander Spohr
Am 01.09.2011 um 18:20 schrieb Gino Pacitti: The '+' symbol here: 3CC0hsl3LP0e4ruLa+icqdcIKDe9nNhNU9... seems to be replaced with a space: 3CC0hsl3LP0e4ruLa icqdcIKDe9nNhNU9... Any ideas why formValueForKey does this? Because a + in an URL is a placeholder for a space. You have to

Re: WebOjects Apache Adaptor for 16 Servers+

2011-08-30 Thread Alexander Spohr
Am 27.08.2011 um 14:35 schrieb Stéphan Mertz: I could declare hosts, applications and instances but I could not connect to an instance with a 'Application does not exist' error. Does the web server know the ip addresses of the app servers host names? We had a problem when the admin forgot to

Re: WebOjects Apache Adaptor for 16 Servers+

2011-08-26 Thread Alexander Spohr
I'll answer for Paul (same company). Am 26.08.2011 um 08:43 schrieb Mertz Stéphan: Hi Paul, Could you share with us your experience in WebObjects deployment with lot of servers ? I am facing problem with the following architecture : What is your problem? . a dedicated http server with

Re: WebOjects Apache Adaptor for 16 Servers+

2011-08-26 Thread Alexander Spohr
as backup) wotaskd's do not synchronize. They just know their own machine. (As far as I remember) atze Am 26.08.2011 um 16:16 schrieb Mertz Stéphan: Hi, Le 26 août 2011 à 14:31, Alexander Spohr a écrit : What is your problem? It's rather a comprehension problem. My first attempt

ant build not working - again after update (Lion this time)

2011-07-21 Thread Alexander Spohr
Hi people, I feel stupid. After the upgrade to Lion the start of Eclipse told me to download Java first. I did that and Eclipse works as expected. Now I tried to run ant from the cli. And again it fails as it did when I last updated Java under Snow Leopard. The last time the problem was that

Re: ant build not working - again after update (Lion this time)

2011-07-21 Thread Alexander Spohr
Bogdan, that did the tick (under Lion). Thanx a lot! atze Am 21.07.2011 um 16:13 schrieb Bogdan Zlatanov: Hi Alexander, Link or copy the woproject.jar to your ant home ( /usr/share/ant/lib on Snow Leopard ). HTH On Thu, Jul 21, 2011 at 5:01 PM, Alexander Spohr

Re: [ANN] Wonderbar 1.0

2011-07-20 Thread Alexander Spohr
Hi Ken, what is the WO Monitor part doing? Regards, atze Am 20.07.2011 um 05:34 schrieb ISHIMOTO Ken: Hi Wonder-Community, Good News : There is now a new Version with a new Name: Wonderbar This Version will work with OS X Snow Leopard and Lion. And is a lot smaller as

training materials

2011-07-06 Thread Alexander Spohr
Matthias Fricke still has some material that he maintained and updated. The page is German but I think his material is english: http://training.assense.com/cgi-bin/WebObjects/AATC.woa/wa/courses?name=WebObjects+Einführung+-+Eclipse%2FWOLips Am 06.07.2011 um 19:09 schrieb Brook, James: I

SELECT count(*) throws - column t0.allianceid must appear in the GROUP BY?

2011-06-11 Thread Alexander Spohr
Hi List, this is a strange one: - allianceID is nullable. Any idea what the problem here might be? atze JDBCAdaptorException: EvaluateExpression failed: com.webobjects.jdbcadaptor.PostgresqlExpression: SELECT count(*), t0.allianceID, t0.alliancePermission, t0.comment,

Re: SELECT count(*) throws - column t0.allianceid must appear in the GROUP BY?

2011-06-11 Thread Alexander Spohr
That is done by EOF. com.webobjects.eoaccess.EOAccessArrayFaultHandler.completeInitializationOfObject It bring my apps speed massively down. We had no exceptions until today. Am 11.06.2011 um 12:18 schrieb Pascal Robert: Are you calling straight SQL or does that call was made with

Re: SELECT count(*) throws - column t0.allianceid must appear in the GROUP BY?

2011-06-11 Thread Alexander Spohr
that my app is not multithreaded inside EOF. But maybe I get an uncatched exception that keeps the count attribute from being removed. I'll check into that. Sorry for the noise! atze Am 11.06.2011 um 12:25 schrieb Alexander Spohr: That is done by EOF

Re: SELECT count(*) throws - column t0.allianceid must appear in the GROUP BY?

2011-06-11 Thread Alexander Spohr
? It will generate a proper query and no work for you. Regards, Miguel Arroz On 2011/06/11, at 12:18, Alexander Spohr wrote: Looks like the bug is mine. I did not read the statement as i should, as the count(*) is an attribute. To count an entity I add an Attribute count

Re: I've got the latest Gianduja snapshot for evaluation

2011-04-22 Thread Alexander Spohr
Um.. nope. Lars always tells the truth ;) http://www.telegraph.co.uk/news/worldnews/europe/2453204/Bent-banana-and-curved-cucumber-rules-dropped-by-EU.html atze Am 22.04.2011 um 18:15 schrieb Chuck Hill: On Apr 22, 2011, at 8:10 AM, Lars Sonchocky-Helldorf wrote: Well, around here

Re: EOGlobalID

2011-04-22 Thread Alexander Spohr
Am 22.04.2011 um 22:59 schrieb Chris Pastore: While trying to return an EOGlobalID for a generic record, I am getting a null. I have a method to fetch a student: private static EOGenericRecord getStudent(EOEditingContext ctx, String sid) { EOGenericRecord student =

Re: Java update breaks ant script WOCompile

2011-03-17 Thread Alexander Spohr
. Compile works fine. Check your ant installation and try this update again. Chuck On Mar 9, 2011, at 5:46 AM, Alexander Spohr wrote: Hi list, after the March 8th 2011 Java update (javac 1.6.0_24) I can not compile using ant any more: BUILD FAILED build.xml:204: taskdef A class

Java update breaks ant script WOCompile

2011-03-10 Thread Alexander Spohr
Hi list, after the March 8th 2011 Java update (javac 1.6.0_24) I can not compile using ant any more: BUILD FAILED build.xml:204: taskdef A class needed by class org.objectstyle.woproject.ant.WOCompile cannot be found: org/apache/tools/ant/taskdefs/Javac At first we thought it was the missing

Re: SELECT statement on relationship binding

2011-01-24 Thread Alexander Spohr
Why remove it? Just uncheck the diamond. You can then still use it in qualifiers but it won’t get fetched. atze Am 23.01.2011 um 23:42 schrieb Mark Wardle: Remove the inverse relationship. Mark -- Dr. Mark Wardle Specialist registrar, Neurology (Sent from my mobile)

Re: NSPropertyListSerialization dictionaryForJSONString/jsonStringFromPropertyList

2011-01-04 Thread Alexander Spohr
On Jan 3, 2011, at 9:38 AM, Alexander Spohr wrote: I have a fresh install (Eclipse, WO543, Wonder) on a new machine using wocommunity.org’s setup. All Frameworks are found by Eclipse. After checking out a project that works on other machines I get these errors: The method

NSPropertyListSerialization dictionaryForJSONString/jsonStringFromPropertyList

2011-01-03 Thread Alexander Spohr
I have a fresh install (Eclipse, WO543, Wonder) on a new machine using wocommunity.org’s setup. All Frameworks are found by Eclipse. After checking out a project that works on other machines I get these errors: The method dictionaryForJSONString(String) is undefined for the type

_Entity.java template bug?

2010-10-15 Thread Alexander Spohr
Hi list, I have a warning in some of my classes that fullQualifier is not used after declaration. The problem occurs if this if is true: #if (${relationship.actualDestination.genericRecord}) EOFetchSpecification fetchSpec = new EOFetchSpecification(${relationship.actualDestination.name},

Re: WOnder install fails

2010-10-09 Thread Alexander Spohr
Sorry for the noise. I had an old framework from 2007 with Resources pointing to Versions/Current/Resources but only Versions/A existed. Am 09.10.2010 um 15:36 schrieb Alexander Spohr: Hi list, just got a fresh WOnder for 5.4.X and tried to install it as instructed here: http

Can not launch WOnder app / was: WOnder install fails

2010-10-09 Thread Alexander Spohr
Hi list, if I try to run a fresh WOnder application I get this Stack: Thread [main] (Suspended (exception AbstractMethodError)) NSNotificationCenter.addObserver(Object, NSSelector, String, Object) line: 230 NSProperties.registerForNotifications() line: 322

Current Status of WO

2010-09-29 Thread Alexander Spohr
Hi list, I am planning a new project with heavy load. No HTML output, just plists. Lots of users, small data footprint (about 10k per request). PostgreSQL. I consider using WO and EOF again because it served me well in the last (almost) 15 years. But I am not sure about the current status. The

Apple dropping WO from own sites

2008-10-03 Thread Alexander Spohr
(Sorry if this was already on the list.) Why did Apple drop WO from the shop? .mac has already dropped WO as me.com is something else. Anyone who can share insights why this is so? If Apple drops WO now from most of its own sites I get really bad feeling.. atze

[solved] Re: Apple dropping WO from own sites

2008-10-03 Thread Alexander Spohr
Am 03.10.2008 um 16:19 schrieb Pascal Robert: Please stop this FUD. It is well know that the front part of MobileMe is 100% JavaScript, and that WO is still used in the back- end. Same thing for the Apple Store, they are rewriting the URLs but it still WO... Well known? Sorry that I

Re: [SPAM] Re: Apple dropping WO from own sites

2008-10-03 Thread Alexander Spohr
Am 03.10.2008 um 18:17 schrieb Guido Neitzer: Have you ever asked them, whether they care about the technology of their company cars? They don’t care as long as it is Audi, BMW or Mercedes... You sell a service. You can provide a specific service with the tools at your hand to a price

Re: mod_gzip + WO problems

2008-06-25 Thread Alexander Spohr
Hi John, where did you get the mod from? The version I had has a bug, it only scans for content-type, but not for Content-type (Capital C). Or some other header that WO sends with a capital. I think you can see it because you either get two headers, or the size does not fit the content. I

http://wiki.objectstyle.org/confluence dead?

2008-06-17 Thread Alexander Spohr
Hi there, we are trying to reach http://wiki.objectstyle.org/confluence since yesterday. But no response comes back. Port 80 works, refresh too, but confluence seems to be down. Is that the case or do we have a problem ourselves? atze Macintosh-2:~ atze$ telnet

Re: Null property exceptions

2008-06-03 Thread Alexander Spohr
Subscription: http://lists.apple.com/mailman/options/webobjects-dev/atze%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40 303 757 99 Web: http://www.freeport.de/ Box: http://dropbox.letsfile.com/02145299-4347-4671-aab9-1d3004eac51d

Re: Null property exceptions

2008-06-03 Thread Alexander Spohr
in the relationship editor, but the foreign key remains in Entry with no seeming way to delete it. thanks, Jeff On Jun 3, 2008, at 4:18 AM, Alexander Spohr wrote: Jeff, you don’t want to propagate anything here. entryScoreID is not a primary-key but a foreign-key, so you can not propagate

Re: WebObjects + iPhone SDK

2008-06-03 Thread Alexander Spohr
XCode is deprecated for WO. You need to use Eclipse and WOLips. atze Am 03.06.2008 um 21:30 schrieb Joe Parks: Is anyone doing development with both WebObjects and the iPhone SDK? After installing the SDK beta, I can no longer create a WebObjects project in XCode. Is there a trick

Re: odd behaviour in n:m settings in EntityModeler in WOLips

2008-06-02 Thread Alexander Spohr
Johann, it sounds like you got it the wrong way ’round. Am 02.06.2008 um 08:58 schrieb Johan Henselmans: I am creating a n:m relation between two tables, called adminuser and admingroup, and flatten the relationship. That would result in an n:m table, admingroupadminuser, with two

Re: EditingContext-Sync [was: WOLongResponesePage Problem]

2008-05-28 Thread Alexander Spohr
Am 27.05.2008 um 22:58 schrieb Tonny Staunsbrink: The reason consider using the same editing context, is that sooner or later i properly wan't my eo's to be displayed to the user At the end of the LongResponse I guess? and usign two ec's will either force me to localize eo's (and using

Re: Weird WO/Apache/Safari problem

2008-05-19 Thread Alexander Spohr
. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/webobjects-dev/atze%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40

Re: takeFormValuesFromRequest problem

2008-05-14 Thread Alexander Spohr
/options/webobjects-dev/atze%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40 303 757 99 Web: http://www.freeport.de/ Box: http://dropbox.letsfile.com/02145299-4347-4671-aab9-1d3004eac51d

Re: takeFormValuesFromRequest problem

2008-05-14 Thread Alexander Spohr
I hate to follow up on myself but it is late here and I hit submit a bit too early :) Am 14.05.2008 um 22:24 schrieb Lachlan Deck: But doesn't the below only change after takeValues. i.e., during appendToResponse? No it changes IN takeValues. When it gets the checkbox, your following

Re: Returning a PDF from a long response page

2008-05-09 Thread Alexander Spohr
://lists.apple.com/mailman/options/webobjects-dev/atze%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40 303 757 99 Web: http://www.freeport.de/ Box: http://dropbox.letsfile.com/02145299-4347-4671-aab9-1d3004eac51d

Re: WO Tutorials

2008-05-07 Thread Alexander Spohr
Select WOLips Goodies Win? Hm... Select WOLips Goodies Mac! ;) atze Am 07.05.2008 um 06:20 schrieb Don Lindsay: Hello; Please visit http://web.mac.com/pccdonl/index.html, I created a short installation tutorial as an example. I think this is the kind of thing we need for

Re: WO NoVA

2008-05-06 Thread Alexander Spohr
No wonder you have more hits from France than from Germany! • English • Français • German The latter should be Deutsch so we can understand its meaning ;) atze ps. Nothing happens at all if I click on French or German. pps. Xavier? Are you clicking on that

Re: Sorting to many relationship

2008-05-04 Thread Alexander Spohr
: http://lists.apple.com/mailman/options/webobjects-dev/atze%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40 303 757 99 Web: http://www.freeport.de/ Box: http://dropbox.letsfile.com/02145299-4347-4671-aab9-1d3004eac51d

Re: Openning an extra window on button click

2008-05-04 Thread Alexander Spohr
Am 04.05.2008 um 02:30 schrieb Serge Cohen: Now, I'd like to have a button in the form, which when clicked would create an extra window with a detailed list of the SELECTED object of class A. form: WOForm { action = yourAction; target = newNiceLittleWindow; } To me this

Re: [SOLVED] Re: @sum optimization?

2008-04-29 Thread Alexander Spohr
Am 28.04.2008 um 23:20 schrieb Florijan Stamenkovic: The @keypath-actions are something that NSArray does. And NSArray knows nothing about EOF. Hm, this could easily be overridden by an EOF specific subclass... An NSArray (a fault) that would respond to objectAtIndex(...) by firing the

Re: Best Server Environment for Large WebObjects Applications

2008-04-29 Thread Alexander Spohr
Am 29.04.2008 um 04:53 schrieb Don Lindsay: I agree. Not really sure who they are selling these to. I work with Government and Fortune 500 companies they and I know I could not get 20k*2=40K past them, we could purchase a hell of a server with that money. Question: What does the

Re: @sum optimization?

2008-04-28 Thread Alexander Spohr
Am 28.04.2008 um 19:22 schrieb Florijan Stamenkovic: I thought that @count operates directly on the db No. The @keypath-actions are something that NSArray does. And NSArray knows nothing about EOF. atze ps. Someone might shout WOnder now. I don’t use it, so I have no clue if

Re: Best Server Environment for Large WebObjects Applications

2008-04-28 Thread Alexander Spohr
Am 28.04.2008 um 21:37 schrieb Alan Ward: It can use various techniques for deciding when an app instance is down (or unresponsive) and will cease routing requests to it. You still need something to restart dead apps but you can do that without wotaskd. So why not use wotaskd in the

Re: Apple Defines a Product Road Map for WebObjects!

2008-04-28 Thread Alexander Spohr
You forgot the :) Am 28.04.2008 um 23:37 schrieb Miguel Arroz: Hi! All the details in http://terminalapp.net/apple-defines-a-product-road-map-for-webobjects/ . Yours Miguel Arroz Miguel Arroz http://www.terminalapp.net http://www.ipragma.com

Re: Best Server Environment for Large WebObjects Applications

2008-04-27 Thread Alexander Spohr
Not sure if I understand the question. But I’d say deploy the woa without any 'app-server' around it, using wotaskd and JavaMonitor. It is its own app-server. Maybe someone could point me to the advantage of using any additional stuff like Tomcat or JBoss with any WO-app. atze

Re: CLOSE_WAIT processes/ instances HANG ???

2008-04-22 Thread Alexander Spohr
I think you are using an old Apache-plugin (mod_WebObjects.so). Grab, compile and install a new one. atze Am 22.04.2008 um 15:47 schrieb Shravan Kumar.M: We have been battered by CLOSE_WAIT processes and instances hang. We see CLOSE_WAIT state of a process for both java and httpd

Re: Staying with WebObjects

2008-04-12 Thread Alexander Spohr
Am 11.04.2008 um 22:47 schrieb David Avendasora: On Apr 11, 2008, at 4:06 PM, Simon McLean wrote: I think the real bug-bear for people struggling to get their companies to commit to webobjects isn't the fact that it's not open source - i think it's the fact that you have to buy a mac to

Re: Leaving WebObjects

2008-04-09 Thread Alexander Spohr
. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/webobjects-dev/atze%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40 303 757

Re: Best Way® to test for existence of a rela tionship

2008-04-07 Thread Alexander Spohr
/webobjects-dev/atze%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40 303 757 99 Web: http://www.freeport.de/ Box: http://dropbox.letsfile.com/02145299-4347-4671-aab9-1d3004eac51d --- ___ Do

Re: Best Way® to test for existence of a rela tionship

2008-04-07 Thread Alexander Spohr
%40freeport.de This email sent to [EMAIL PROTECTED] --- Alexander Spohr Freeport Soliversum Fax: +49 40 303 757 99 Web: http://www.freeport.de/ Box: http://dropbox.letsfile.com/02145299-4347-4671-aab9-1d3004eac51d --- ___ Do not post admin requests

Re: Convenience functions in model classes

2008-04-05 Thread Alexander Spohr
Am 05.04.2008 um 06:50 schrieb Jeff Schmitz: Hello As I get rolling down the EO highway, I find myself wanting to put convenience functions in the model classes that are generated by the EOGenerator (yes, I'm using the generation gap classes for this). e.g. to more closely mimic

  1   2   >