WANTED: Ruby/RubyCocoa/Objective-C developer

2007-03-01 Thread Christopher Rasch
I'm a programmer at Marketocracy in San Mateo, California. We operate a long term stock market simulation at our website, marketocracy.com. (1) Most of our website was written in WebObjects/Objective-C code. Unfortunately, Apple stopped supporting the WO/Objective-C platform several years ago.

Re: WANTED: WebObjects 4.51/Objective-C tutor

2007-03-01 Thread Christopher Rasch
Chuck Hill wrote: Hi Chris, I don't know how many of us Obj-C WO folks are still around. I can think maybe 20 names. Very few of us are still using Obj-C, maybe half a dozen? My company moved, albeit kicking and screaming, to Java several years ago. This is probably the best place to find

Re: WANTED: WebObjects 4.51/Objective-C tutor

2007-03-01 Thread Chuck Hill
On Mar 1, 2007, at 6:11 PM, Pascal Robert wrote: Le 07-03-01 à 20:37, Chuck Hill a écrit : Hi Chris, I don't know how many of us Obj-C WO folks are still around. I can think maybe 20 names. Very few of us are still using Obj-C, maybe half a dozen? But those 20 people always go to the

Re: WANTED: WebObjects 4.51/Objective-C tutor

2007-03-01 Thread Alan Ward
Some of us gave up asking that years ago and now use Java ;-) Alan On Mar 1, 2007, at 7:11 PM, Pascal Robert wrote: Le 07-03-01 à 20:37, Chuck Hill a écrit : Hi Chris, I don't know how many of us Obj-C WO folks are still around. I can think maybe 20 names. Very few of us are still usi

Re: WANTED: WebObjects 4.51/Objective-C tutor

2007-03-01 Thread Pascal Robert
Le 07-03-01 à 20:37, Chuck Hill a écrit : Hi Chris, I don't know how many of us Obj-C WO folks are still around. I can think maybe 20 names. Very few of us are still using Obj-C, maybe half a dozen? But those 20 people always go to the feedback forum at WWDC to ask Apple why they dro

Re: WANTED: WebObjects 4.51/Objective-C tutor

2007-03-01 Thread Chuck Hill
Hi Chris, I don't know how many of us Obj-C WO folks are still around. I can think maybe 20 names. Very few of us are still using Obj-C, maybe half a dozen? My company moved, albeit kicking and screaming, to Java several years ago. This is probably the best place to find someone, but

Frontbase error

2007-03-01 Thread Jeff Schmitz
Anyone ever see this when trying to start a Frontbase database? Looks like it's going to be one of those nights... Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x Thread 0: 0 libSystem.B.dylib 0x9002449f semaphore_wait_trap + 7 1 FrontBase

WANTED: WebObjects 4.51/Objective-C tutor

2007-03-01 Thread Christopher Rasch
Hi, My company has a large body of WebObjects Objective-C code (WO 4.51) that has been hacked to run on Tiger. I'd like to learn how to maintain and modify it, but I've never programmed in WebObjects before. Therefore, I'm looking for someone in the Bay Area (I'm in San Mateo) to provide som

Server on MBP

2007-03-01 Thread Jeff Schmitz
Just saw this on the os/x server HW requirements. Looks like I'm in for a quick run to the Apple store if my main server dies... Xserve or Macintosh desktop computer with an Intel or PowerPC G5 or G4 processor 512MB of RAM 10GB of available disk space Built-in FireWire Jeff On Mar 1, 2007, a

Re: Refresh

2007-03-01 Thread Jeff Schmitz
Hello I just installed Mac OS/X server 10.4 on my Macbook pro for use as a development/backup deployment platform, using the "Upgrade Client OS" option as they suggest. However, now when I try to run the Server Admin program to setup my WebObjects wotaskd process, Server Admin says it ca

Re: saveChanges() not saving

2007-03-01 Thread Chuck Hill
Chuck: 47 EOF Glitches: 0 :-P Glad to hear you found it so quickly. Looks like someone owes you a beer! Chuck On Mar 1, 2007, at 12:29 PM, David Haggerty wrote: Thanks... You were right I didn't dig far enough. One of the other programmers was setting values in the constructor of one o

RE: saveChanges() not saving

2007-03-01 Thread David Haggerty
Thanks... You were right I didn't dig far enough. One of the other programmers was setting values in the constructor of one of the parent classes of EmailCommunicationRecipient. I didn't go high enough up in the hierachy. I will refer to the commandments from now on when troublshooting an issu

Re: saveChanges() not saving

2007-03-01 Thread Ken Anderson
Agreed, especially if it happens every time I've had this happen before, and sometimes it had to do with ending up with 2 copies of an object because one was created automatically for a mandatory to-one relationship. Any chance of that here? Ken On Mar 1, 2007, at 3:23 PM, Chuck Hill

Re: saveChanges() not saving

2007-03-01 Thread Chuck Hill
All that said, the symptoms sound more to me like violating one of the commandments. Chuck On Mar 1, 2007, at 12:16 PM, Mike Schrag wrote: If you're using ERD2W, I think you can just let it do its thing, but if you're not, my happy place with autolocking is: er.extensions.ERXApplication.

Re: saveChanges() not saving

2007-03-01 Thread Mike Schrag
If you're using ERD2W, I think you can just let it do its thing, but if you're not, my happy place with autolocking is: er.extensions.ERXApplication.useEditingContextUnlocker=true er.extensions.ERXEC.defaultAutomaticLockUnlock=true er.extensions.ERXEC.useSharedEditingContext=false er.extensions

Re: saveChanges() not saving

2007-03-01 Thread Guido Neitzer
On 01.03.2007, at 12:52, David Haggerty wrote: Is it bad to rely on ERXEC doing the autolocking? Not as far as I know, if you have the correct settings for autolocking in the Properties. ERXEC autolocking works for me since years. cug ___ Do

Re: saveChanges() not saving

2007-03-01 Thread Chuck Hill
On Mar 1, 2007, at 11:29 AM, Jerry W. Walker wrote: According to Cecil B. DeMille, moses used TWO tablets. That is just a movie. Have you ever seen an accurate movie? I guess web pages aren't as cheap as stone... wait a minute... yes they are! You must be using that special deluxe ston

Re: saveChanges() not saving

2007-03-01 Thread Chuck Hill
(a) Review the commandments (b) The cause of the error may be far away (in terms of both time and code) from the symptom you are seeing while saving. Don't just focus locally. Chuck On Mar 1, 2007, at 11:52 AM, David Haggerty wrote: I over simplified the example... I was trying to rem

RE: saveChanges() not saving

2007-03-01 Thread David Haggerty
I over simplified the example... I was trying to remove some of our internal stuff and I left out the locking. Same problem still occurs with the locking. EOEditingContext ec = new EOEditingContext(); try { ec.lock(); // If I uncomment this, it saves properly. // ec.committedSnapsho

Re: saveChanges() not saving

2007-03-01 Thread Jerry W. Walker
According to Cecil B. DeMille, moses used TWO tablets. I guess web pages aren't as cheap as stone... wait a minute... yes they are! You must be using that special deluxe stone quarried out of Queen Elizabeth Park. C'mon, you're going to skimp on stones in the search for TRUTH? Regards, J

Re: Using CommuniGate Pro with Java/WO

2007-03-01 Thread Pascal Robert
This is strange, it seems that the line deliminator for the disclaimer of the list was added to the link :-/ Ok, so with a couple of returns, it should be fine :-) http://community.os.ca/2007/03/01/using-communigate-pro-with-java-or- webobjects Pascal, When I click the link, it say

Re: Using CommuniGate Pro with Java/WO

2007-03-01 Thread Chuck Hill
Something adds a lot of to the end of the URL. Edit those off and you can read it. Chuck On Mar 1, 2007, at 11:01 AM, Ken Anderson wrote: Pascal, When I click the link, it says 'Error 404 - Not Found'. Ken On Mar 1, 2007, at 1:59 PM, Pascal Robert wrote: Small

Re: Using CommuniGate Pro with Java/WO

2007-03-01 Thread Ken Anderson
Pascal, When I click the link, it says 'Error 404 - Not Found'. Ken On Mar 1, 2007, at 1:59 PM, Pascal Robert wrote: Small tidbit that I just wrote (with my very bad English) : http://community.os.ca/2007/03/01/using-communigate-pro-with-java- or-webobjects ___

Using CommuniGate Pro with Java/WO

2007-03-01 Thread Pascal Robert
Small tidbit that I just wrote (with my very bad English) : http://community.os.ca/2007/03/01/using-communigate-pro-with-java-or- webobjects ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobject

Re: saveChanges() not saving

2007-03-01 Thread Chuck Hill
No, I only had the regular size of stone tablet. Four commandments and I ran out of room. Obviously, Moses shopped at Costco. I supposed this could be considered a commandment, but it more falls under locking. Chuck On Mar 1, 2007, at 10:50 AM, Jerry W. Walker wrote: Hi, Chuck, That

Re: Flash and WebObjects

2007-03-01 Thread Josh Paul
Most definitely. It'll depend on your approach with Flash, meaning whether you want the swf to communicate directly or if you want it to read from the resulting HTML (_root and parameters). In the first instance, you'll likely want WO to respond with XML and use Flash's LoadVars. In the second, yo

Re: saveChanges() not saving

2007-03-01 Thread Jerry W. Walker
Hi, Chuck, That's interesting. I went to the EOF commandments page and couldn't find the commandment: * Don't do anything with a newly created Editing Context until you've locked it and be sure to unlock it at the end of your use, or at the end of your R-R cycle. (Don't worry about the

Re: saveChanges() not saving

2007-03-01 Thread Chuck Hill
David, In at least one place in your code you are abusing EOF. This makes EOF very cranky and, in return, it messes with your head. Play nice and your problems will go away. :-) First, check very carefully that you are not violating one of the EOF Commandments: http://en.wikibooks.org/

Re: Converting Apps From Xcode > Eclipse [Problems Solved]

2007-03-01 Thread Mike Schrag
If you're in a helping mood and have some free time, can you try again the first way and look inside your project's "build" folder and see if 1) the eomodel folder is there and 2) are the entity plists (et al) inside of it? If it's broken, try then deleting the build folder entirely and ha

saveChanges() not saving

2007-03-01 Thread David Haggerty
I have come across a rather strange problem. Changes to an EO are not saving properly. In memory it shows that I have changed the EO but when I look at the editingContext, it doesn't show it in _unprocessedChanges. It also doesn't save the change that I am making. I finally realized that if I ca

Re: Converting Apps From Xcode > Eclipse [Problems Solved]

2007-03-01 Thread Fred Shurtleff
Hi All, Just want to report that I solved my problem (could not find an Object Store for entities in a model that was copied from an Xcode app), and what the key issues are. This is basic, but the key is to copy the model file (.eomodeld) into your Eclipse project folder FIRST and before any

Flash and WebObjects

2007-03-01 Thread WIESEN Bruno
Hello, I can play swf files within a wo page (via WOEmbeddedObject)but I wonder if It is possible to create and give parameters with WebObjects?? Thank you. Bruno. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mai

[OT] My favorite Terminal.app tip

2007-03-01 Thread Timo Hoepfner
This blog post descibes how to configure Terminal.app to move the cursor word-by-word using option-arrow: http://macromates.com/blog/archives/2006/01/07/word-movement-in- terminal/ Timo ___ Do not post admin requests to the list. They will be ign

Re: Static in WO (was: Refresh)

2007-03-01 Thread Mike Schrag
This is sharing of verified class bytecode, as opposed to sharing of runtime state. ms On Mar 1, 2007, at 9:42 AM, netBrackets wrote: This is another possible solution that I always meant to investigate, but haven't up to now... http://www-128.ibm.com/developerworks/java/library/j-ibmjava

Re: Static in WO (was: Refresh)

2007-03-01 Thread Mike Schrag
I would PERSONALLY recommend that you DON'T go to terracotta just to get a unique integer sequence :) ms On Mar 1, 2007, at 9:35 AM, Jean-François Veillette wrote: I have never tried but, look at this demo, this look promising ! http://www.terracottatech.com/TC_container.html - jfv Le 07-

Re: Static in WO (was: Refresh)

2007-03-01 Thread netBrackets
This is another possible solution that I always meant to investigate, but haven't up to now... http://www-128.ibm.com/developerworks/java/library/j-ibmjava4/ On Thursday, March 01, 2007, at 08:35AM, "Jean-François Veillette" <[EMAIL PROTECTED]> wrote: >I have never tried but, look at this dem

Re: Sending XML

2007-03-01 Thread Asa Hardcastle
I've heard great things about apache's httpclient, so it is probably a good choice. However, if you want to stick with J2SE and you're using 1.5, you can use java.net.HttpURLConnection. SSL is easy, and you'll be dealing with a stream. This class finally allows reliable setting of the re

Re: Static in WO (was: Refresh)

2007-03-01 Thread Jean-François Veillette
I have never tried but, look at this demo, this look promising ! http://www.terracottatech.com/TC_container.html - jfv Le 07-03-01 à 00:55, Mike Schrag a écrit : In Java, static variables are unique per-class-per-class-loader. That is, if you have the same class loaded in two separate class

Re: Sending XML

2007-03-01 Thread Robert Walker
WOHTTPConnection should work fine for this, as long as you don't need SSL. If you want a more flexible solution that does fully support SSL connections I would recommend the Apache HttpClient, which is what I use with great success. You can find HttpClient here: http://jakarta.apache.org/c

Re: Pagination in WO for a big resultset

2007-03-01 Thread Timo Hoepfner
Hi, take a look at WODisplayGroup and WOBatchNavigationBar. When obtaining the whole resultset in one step is to time or memory intensive, take a look into ERXBatchingDisplayGroup from Project Wonder. And while we're at it, ERXBatchNaviagtionBar in Wonder is also nicer that WOBatchNaviagti

Pagination in WO for a big resultset

2007-03-01 Thread Tanmoy Roy
Hi All, I have page where the resultset fetched from database will be quite big and hence it will be very difficult to fit in a single page. I am thinking of implementing a pagination when 10 rows will be shown at a time. I can implement it using a temp. array which will store first 10 and then

Re: Sessions timeout

2007-03-01 Thread Daniele Corti
2007/3/1, WIESEN Bruno <[EMAIL PROTECTED]>: Hello, Is it possible to get the remaining time before a session times out?? Thank you. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lis

Sending XML

2007-03-01 Thread WIESEN Bruno
Re Hello, I used to implement SOAP in order to send and receive XML information to a server...But now I must use another type of sending I have to send XML information to : http://:8080/xxx What can you advise me? I try with WOHTTPConnection and WORequest...Is it a good thing?? Than

Sessions timeout

2007-03-01 Thread WIESEN Bruno
Hello, Is it possible to get the remaining time before a session times out?? Thank you. ___ 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: Converting Apps From Xcode > Eclipse

2007-03-01 Thread Daniele Corti
2007/3/1, Chuck Hill <[EMAIL PROTECTED]>: On Feb 28, 2007, at 4:15 PM, Fred Shurtleff wrote: > Hi All, > > Does anyone have experience converting WebObject applications from > Xcode to Eclipse, or any caveats in making this conversion? Yes. The only caveat I can think of is that you will kic