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 > : > 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). > > What i would like t

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 : > > wow this is great! and I even understand the ‘Derived’ selection now. I still > don’t see how to set the sort direction. Oscar’s e

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 > : > > 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, Jun 30, 20

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 : > 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 > repartition table

Re: Clustered Databases

2014-07-21 Thread Alexander Spohr
Am 21.07.2014 um 16:14 schrieb Calven Eggert : > 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 list (Webobjects-d

Re: Redirect from Spring MVC application to WebObjects application

2014-07-16 Thread Alexander Spohr
e 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

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 : > 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 requirement is that the user > has to co

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: ; } > valueForKey()]: lookup of unknown key: 'compName' This WOComponent does not have an instance variable of the name compName or _compName, nor a method of the name c

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: https://lis

Re: permanentGlobalID not permanent

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

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 : > I've got a query which could be dealt with by building up qualifie

Re: Cascade delete when no relationship: how?

2014-03-20 Thread Alexander Spohr
Am 19.03.2014 um 21:40 schrieb Ramsey Gurley : > 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. ___ Do not post admin requ

Re: ERXObjectStoreCoordinator dispose not releasing database connection?

2014-03-13 Thread Alexander Spohr
> On Mar 13, 2014, at 8:40 AM, John Pollard 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 appearing. >

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 : > 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, it then ge

Re: Starting second instance=app not available

2014-03-04 Thread Alexander Spohr
Am 04.03.2014 um 09:30 schrieb Jeffrey Schmitz : > 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 list (Webobject

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 : > 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 not post admin request

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 : > All, > > I’m trying to setup a load balancing setup between 2 machines, but only the > machine where apache lives is getting requests.

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 prepareSelectExpressionWi

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 : > 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 WORepetition that is the r

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 : > Thanks, > > My parameters are (bigger): > > HTTP Adaptor Settings: > Load Balancing scheme: Round Robin > Send Timeout: 1200 >

Re: Session timeout when performing an action

2013-10-10 Thread Alexander Spohr
Am 10.10.2013 um 09:42 schrieb Schoenenberger Dominique : > 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 admin requests to the list. They wi

Re: Using UNION in EOFetchSpecification

2013-10-06 Thread Alexander Spohr
Am 05.10.2013 um 23:43 schrieb Raymond NANEON : > 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 https://developer.apple.com/legacy/library/docum

Re: Slow response time

2013-09-13 Thread Alexander Spohr
Am 12.09.2013 um 19:12 schrieb "Beall, Mark (HPSL)" : > 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 instances. Batch fe

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 : > 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 try to download a 32GB fi

Re: understanding an Object?

2013-01-15 Thread Alexander Spohr
Am 15.01.2013 um 14:19 schrieb Theodore Petrosky : > 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 object() contai

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

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 : > Hi List, > > we tried t

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 an

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 : > > Am 19.10.2012 um 11:44 schrieb Alexander Spohr : > >> I need an entity to have a long (8 byte) primary key. >>

Re: Automatic Long (8 byte) Primary Key?

2012-10-21 Thread Alexander Spohr
Am 19.10.2012 um 11:44 schrieb Alexander Spohr : > 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 to c

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 be

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 1

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 its

Re: Scheduling not at full hours?

2012-02-28 Thread Alexander Spohr
ons > > > > On 2012-02-28, at 8:30 PM, Alexander Spohr wrote: > >> 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 th

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

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 ni

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 n

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 dispatchRequest(WOR

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 Sub

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 perform

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

Re: CLOSE_WAIT when database is offline

2011-10-17 Thread Alexander Spohr
> On 17 oct. 2011, at 14:54, Alexander Spohr 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 pr

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 tr

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 theEmploymentTitle.employees(Employee.EMPLOYMENT_STATUS

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 t

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 t

Re: WebOjects Apache Adaptor for 16 Servers+

2011-08-26 Thread Alexander Spohr
. (Just 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 r

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

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

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 w

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

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 thin

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

2011-06-11 Thread Alexander Spohr
der, as Pascal > suggested? 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 attri

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

2011-06-11 Thread Alexander Spohr
ought 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: > T

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

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: : Next exception:SQL State:42803 -- error code: 0 -- msg: ERROR: column "t0.allianceid" must appear in the GROUP BY clause or be

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 = (EOGenericR

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

Re: Java update breaks ant script WOCompile

2011-03-17 Thread Alexander Spohr
build. 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

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
jects_5_4_Branch (He added it as > part of the same commit). > > Dave > > > > > 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 fou

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 NSPropertyListSe

_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}",

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

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 her

WOnder install fails

2010-10-09 Thread Alexander Spohr
Hi list, just got a fresh WOnder for 5.4.X and tried to install it as instructed here: http://wiki.objectstyle.org/confluence/display/WONDER/Download+Wonder+Source%2C+Build%2C+Install+and+Upgrade The sudo ant frameworks.install fails with this message: global.framework.install: [sync] Copyi

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

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 you

[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 asked.

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

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 c

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 wiki.objectstyle.or

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: Null property exceptions

2008-06-03 Thread Alexander Spohr
t "propagate" on the relationship 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

Re: Null property exceptions

2008-06-03 Thread Alexander Spohr
Subscription: http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net This email sent to [EMAIL PROTECTED] -- Practical WebObjects - for developers who want to increase their overall knowledge of WebObjects or who are trying to solve specific probl

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 relatio

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 gl

Re: Weird WO/Apache/Safari problem

2008-05-19 Thread Alexander Spohr
__ 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: http://lists.apple.com/mailman/options/webobjects-dev/atze%40freeport.de This email sent

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 con

Re: takeFormValuesFromRequest problem

2008-05-14 Thread Alexander Spohr
t;...> with regards, -- Lachlan Deck ___ 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 Su

Re: Returning a PDF from a long response page

2008-05-09 Thread Alexander Spohr
is 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 to the list. They wi

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 beginne

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 sit

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: Sorting to many relationship

2008-05-04 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 to

Re: How to get rid of ?wosid=

2008-05-04 Thread Alexander Spohr
(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 99 Web: http://www.freeport.d

Re: Best Server Environment for Large WebObjects Applications

2008-04-28 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 iTune

Re: [SOLVED] Re: @sum optimization?

2008-04-28 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 f

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 . Yours Miguel Arroz Miguel Arroz http://www.terminalapp.net http://www.ipragma.com

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 firs

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 it

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 p

Re: Staying with WebObjects

2008-04-14 Thread Alexander Spohr
Am 14.04.2008 um 02:07 schrieb Joe Little: On Sat, Apr 12, 2008 at 4:07 AM, Alexander Spohr <[EMAIL PROTECTED]> wrote: Situation in the Real World: - No software-package, you have to buy a Mac instead that people don't want. You can get to the DMG directly, and read it from

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 ge

  1   2   3   >