Re: Any PDF Experts out there?

2007-11-16 Thread Andrew Lindesay
Hello Calven; I've looked at iText to manipulate my PDF document but can't figure out how to read in my pdf, which is a file in my Eclipse project. We're working on a WebObjects application which amongst other things is doing bulk manipulation / collation of PDF files and have found that

Re: Eclipse Version to Download

2007-11-16 Thread Gaastra Dennis - WO Lists
Hi Mike et al., Where do you get Eclipse 3.3.2 for Leopard? Link please? What is the difference between: Eclipse IDE for Java Developers , Eclipse IDE for Java EE Developers, and Eclipse Classic? Which one most closely resembles XCode? Can you do a mass find/replace in Eclipse like in XCode?

Re: Eclipse Version to Download

2007-11-16 Thread Mike Schrag
I've tried both Command-Shift-R and Command-Shift-T, entered text in both, selected a hit using either the mouse or arrow keys, and pressed Return. Nothing has crashed Eclipse. However, as complex as Eclipse is, maybe my loaded plugins differs from yours making my configuration less like

Re: Eclipse Version to Download

2007-11-16 Thread James Cicenia
OK - I just got my new MacBookPro... have spent hours getting all my data, applications, databases, and of course Eclipse and all of its permutations. I installed 3.3.1.1 with Leopard and is seems to be working great. So where do I get 3.3.2 because I might as well do it now. What little

Re: Eclipse Version to Download

2007-11-16 Thread Art Isbell
On Nov 16, 2007, at 3:37 PM, Guido Neitzer wrote: Can you try "Command-Shift-R" and select something from there and hit return? I've tried both Command-Shift-R and Command-Shift-T, entered text in both, selected a hit using either the mouse or arrow keys, and pressed Return. Nothing ha

Re: Eclipse Version to Download

2007-11-16 Thread Mike Schrag
I can't make Eclipse crash even when I press Enter (after at least 20 attempts). I guess I should continue using 3.3.1.1 under Leopard until it causes problems. If 3.3.1.1 doesn't crash for you, you're just plain lucky. As long as it isn't an issue for you, 3.3.1.1 should be fine -- that's

Re: Eclipse Version to Download

2007-11-16 Thread Guido Neitzer
On 16.11.2007, at 18:11, Art Isbell wrote: On Nov 16, 2007, at 2:51 PM, Mike Schrag wrote: If you click OK with the mouse, it will always work. If you type and press enter to select, there's 50% (or so) chance that you'll crash Eclipse. I can't make Eclipse crash even when I press Enter

Re: Eclipse Version to Download

2007-11-16 Thread Art Isbell
On Nov 16, 2007, at 2:51 PM, Mike Schrag wrote: If you click OK with the mouse, it will always work. If you type and press enter to select, there's 50% (or so) chance that you'll crash Eclipse. I can't make Eclipse crash even when I press Enter (after at least 20 attempts). I guess I s

Re: Eclipse Version to Download

2007-11-16 Thread Guido Neitzer
On 16.11.2007, at 17:05, Art Isbell wrote: I've been running 3.3.1.1 under Leopard and WO 5.4 for a couple of weeks and have never experienced an Eclipse crash. I must not have done whatever triggers the crash. Try Command-Shift-T. Type something, hit return, try it again if it doesn't

Re: Eclipse Version to Download

2007-11-16 Thread Mike Schrag
I just opened both of these dialogs, entered text, and clicked the OK button without crashing Eclipse 3.3.1.1 under OS X 10.5.1. Maybe I'm just lucky :-) Or maybe some change in 10.5.1 fixed the problem. If you click OK with the mouse, it will always work. If you type and press enter to s

Re: Eclipse Version to Download

2007-11-16 Thread Art Isbell
On Nov 16, 2007, at 2:27 PM, Mike Schrag wrote: I've been running 3.3.1.1 under Leopard and WO 5.4 for a couple of weeks and have never experienced an Eclipse crash. I must not have done whatever triggers the crash. Then you're not using the Open Type (cmd-shift-t) dialog or the Open Reso

help with OS X leopard and eclipse

2007-11-16 Thread Theodore Petrosky
I am finally making the plunge and set up eclipse on my macbook pro with leopard. I downloaded eclipse 3.3.1.1 and did the WOLips install. so far so good. then I got the javaEOGenerator. I am finally able to set up my connection to my postgresql backend. However, when I try to reverse engineer the

Re: Eclipse Version to Download

2007-11-16 Thread Mike Schrag
I've been running 3.3.1.1 under Leopard and WO 5.4 for a couple of weeks and have never experienced an Eclipse crash. I must not have done whatever triggers the crash. Then you're not using the Open Type (cmd-shift-t) dialog or the Open Resource (cmd-shift-r) dialog, which really should be

Fwd: Sharing Values Between Sub Components

2007-11-16 Thread Jonathan Miller
Please disregard prior email, it was so obvious I didn't get it. Have a nice weekend, Jon Begin forwarded message: From: Jonathan Miller <[EMAIL PROTECTED]> Date: November 16, 2007 2:02:49 PM HST To: webobjects-dev@lists.apple.com Subject: Sharing Values Between Sub Components Hi, Is there

Re: Eclipse Version to Download

2007-11-16 Thread Art Isbell
On Nov 16, 2007, at 11:13 AM, Mike Schrag wrote: The stable build based on 3.3 has not switched over, yet. I think it will be tonight, but I might want until the end of the weekend. Eclipse 3.3.2 is actually NOT finalized as I original thought it was (a misleading comment on a bug in Ecli

Sharing Values Between Sub Components

2007-11-16 Thread Jonathan Miller
Hi, Is there a way for a sub component to push a value to the parent and have that same variable read by another sub component? Thanks in advance. Jon ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Any PDF Experts out there?

2007-11-16 Thread Jay Al Hashal
yes, indeed :) I absent-mindedly hit the left most "build" button in my "mail client", which evidently sends your email rather than compile it- go figure. Is the part you are missing? In a WO app, to read a file in the Resources of a project: InputStream is = WOApplication.application(

Re: Any PDF Experts out there?

2007-11-16 Thread Chuck Hill
Is the part you are missing? In a WO app, to read a file in the Resources of a project: InputStream is = WOApplication.application().resourceManager ().inputStreamForResourceNamed("YourFile.pdf", null, NSArray.EmptyArray); PDFReader pdfReader = new PDFReader(is); etc. Chuck On Nov 16, 2

Re: Any PDF Experts out there?

2007-11-16 Thread Jay Al Hashal
Hey Calven, you can find some itext tutorials there http://itextdocs.lowagie.com/tutorial/ http://sourceforge.net/project/showfiles.php?group_id=15255 I personally used Multivalent in the past (http:// multivalent.sourceforge.net/), I am pretty sure it is all very similar for reading in you

Any PDF Experts out there?

2007-11-16 Thread Calven Eggert
Happy Friday All, I want to read in a PDF document and modify part of it and then email it. I got the emailing part down pat thanks to ERJavaMail. I've looked at iText to manipulate my PDF document but can't figure out how to read in my pdf, which is a file in my Eclipse project. Any one

Property List File in WO 5.4 Leopard (e.g. Localized.strings)

2007-11-16 Thread Sergio Sánchez Maffet
Hi all, Does anybody knows how to write a property list file (e.g., Localized.strings) that displays correctly under WO 5.4 (Leopard)? Any of my attempts failed, it seems to be broken. I have know tried almost everything without luck, ASCII (with and without prefix: // !$*UTF8*$! and // !$

Re: Deadlock

2007-11-16 Thread Chuck Hill
On Nov 16, 2007, at 3:06 AM, Simon McLean wrote: Hi All - We have a deadlock problem with an app. Typically in such situations I follow Andrew Lindesay's excellent tutorial on using JDB to grab a thread dump off a hung instance and start digging from there. However, with this particular

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Ken Ishimoto
Thanks for answer. Never heard about "objectsForFetchAll"? Mmmh. JavaEOGenerator : JavaSubclassSourceEOF5.eotemplate http://webobjects.mdimension.com/wolips/EOGenerator/JavaEOGenerator%20Templates/ Line : 32-34 public static NSArray> allObjects

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Ken Ishimoto
Yes, I have tried to make a FetchSpec with FetchAll and the Error is gone. The Template "JavaSourceEOF52.eotemplate" makes a method for every FetchSpec. That is a nice feature. But "JavaSubclassSourceEOF5.eotemplate" expect a "FetchAll" FetchSpec is a little strange and not documented^^

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Ken Ishimoto
Hi Chuck, I am downloading the Velocity Templates now, and will try. Thanks.. Ken On 2007/11/16, at 17:23, Chuck Hill wrote: Hi Ken, On Nov 16, 2007, at 8:12 AM, Ken Ishimoto wrote: Thanks for answer. Never heard about "objectsForFetchAll"? Mmmh. JavaEOGenerator : JavaSubclassSource

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Mike Schrag
Only the Error that I get from JavaEOGenerator Templates Code, no idea? Do I need some WO Frameworks to add? I made a search of "objectsForFetchAll" in the latest Wonder Source except bugtracker no word about this Method. Missing I something, or is it better to stop Programming and start wo

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Chuck Hill
On Nov 16, 2007, at 8:30 AM, Miguel Arroz wrote: Hi! Portugal must be a nice place. Maybe I will be there someday. There might be a WebObjects Refugee Farm when you get there. Computers and other electronic devices not allo

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Miguel Arroz
Hi! Portugal must be a nice place. Maybe I will be there someday. There might be a WebObjects Refugee Farm when you get there. Computers and other electronic devices not allowed. Yours Miguel Arroz Miguel Arroz http://www

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Chuck Hill
Hi Ken, On Nov 16, 2007, at 8:12 AM, Ken Ishimoto wrote: Thanks for answer. Never heard about "objectsForFetchAll"? Mmmh. JavaEOGenerator : JavaSubclassSourceEOF5.eotemplate http://webobjects.mdimension.com/wolips/EOGenerator/JavaEOGenerator% 20Templates/ Line : 32-34 public static

WO5.4: Bug serializing/deserializing EOAndQualifiers?

2007-11-16 Thread Tom Woteki
Hi: I believe there is a bug in the serialization/deserialization of EOAndQualifiers in WO5.4. I'm wondering if anyone else has observed this before I file a bug. I am porting an application verbatim from WO5.3 on 10.4.10 to WO5.4 on Leopard. The serialization code works perfectly in the W

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Mike Schrag
public static NSArray> allObjects(EOEditingContext aContext) { return value="[entity.classNameWithoutPackage]"/ >.objectsForFetchAll(aContext); } You're right, this appears to be a bug in the default JavaEOGenerator templates. It appear

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Pascal Robert
or is it better to stop Programming and start working on a farm^^ If you do decide to take up farming, Miguel Arroz has a nice spot picked out in Portugal. I am tempted to throw down this keyboard and join you some days! :-) Portugal must be a nice place. Maybe I will be there someday.

Re: Slogan: and the winner is...

2007-11-16 Thread Alexander Spohr
Am 16.11.2007 um 13:43 schrieb Gino Pacitti: It should be- WebObjects: Apples best-kept secret even Steve Jobs does not know it exists :-) He does :( ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mai

Re: WO5.4: Bug serializing/deserializing EOAndQualifiers?

2007-11-16 Thread Mike Schrag
I believe there is a bug in the serialization/deserialization of EOAndQualifiers in WO5.4. I'm wondering if anyone else has observed this before I file a bug. you should log a bug in radar for this ... ms ___ Do not post admin requests to the list.

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Anjo Krank
Am 16.11.2007 um 16:38 schrieb Chuck Hill: Only the Error that I get from JavaEOGenerator Templates Code, no idea? Do I need some WO Frameworks to add? I made a search of "objectsForFetchAll" in the latest Wonder Source except bugtracker no word about this Method. Missing I something, I

Re: Deadlock

2007-11-16 Thread Kieran Kelleher
Searching the community wiki shows: http://wiki.objectstyle.org/confluence/display/WONDER/Using+a+custom +EOEditingContext+%28ERXEC%29+Subclass On Nov 16, 2007, at 10:28 AM, Simon McLean wrote: Hi Kieran / Xavier - I was going to ask what the formal way of doing this was. I have this in th

Re: Deadlock

2007-11-16 Thread Simon McLean
Hi Kieran / Xavier - I was going to ask what the formal way of doing this was. I have this in the app constructor: // Don't use that damn shared context! ERXEC.factory().setUseSharedEditingContext(false); EOSharedEditingContext.setDefaultSharedE

Re: Deadlock

2007-11-16 Thread Simon McLean
Thanks for all the tips guys. Simon On 16 Nov 2007, at 15:33, Mike Schrag wrote: Is that enough to stop the shared EC being used ? Just set er.extensions.ERXEC.useSharedEditingContext=false in your Properties file .. That's all you need to do. I also thought of using the LockingErrorScream

Re: Deadlock

2007-11-16 Thread Mike Schrag
Is that enough to stop the shared EC being used ? Just set er.extensions.ERXEC.useSharedEditingContext=false in your Properties file .. That's all you need to do. I also thought of using the LockingErrorScreamingEditingContext, but after poking around ERXEC a little I'm not sure how to fit i

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Chuck Hill
Hi Ken, and Welcome! On Nov 16, 2007, at 2:07 AM, Ken Ishimoto wrote: Thanks for answer. I was installing now the latest build 4643. Some Problem. Now I made a fresh install of Eclipse 3.3.1.1 & 4643, and the New -> WebObjects Application works fine again. No idea why that strange behavi

Re: Deadlock

2007-11-16 Thread Kieran Kelleher
Wonder ERXExtensions has a property to disable this too as far as I know. On Nov 16, 2007, at 8:22 AM, WO Dev wrote: Hello Simon, We had the same issue with an application using sharedEditingContext. I don't know if that's your case, but on our side, removing the use of sharedEditingContext

Re: Deadlock

2007-11-16 Thread WO Dev
Hello Simon, We had the same issue with an application using sharedEditingContext. I don't know if that's your case, but on our side, removing the use of sharedEditingContext resolved the issue. Xavier Hi All - We have a deadlock problem with an app. Typically in such situations I follow

Re: Slogan: and the winner is...

2007-11-16 Thread Gino Pacitti
It should be- WebObjects: Apples best-kept secret even Steve Jobs does not know it exists :-) On 16 Nov 2007, at 12:38, Pascal Robert wrote: It's a tie between "Imagine - WebObjects - Deploy" and "WebObjects: Apple's best-kept secret", so we will use both of them. Thanks to the 89

Slogan: and the winner is...

2007-11-16 Thread Pascal Robert
It's a tie between "Imagine - WebObjects - Deploy" and "WebObjects: Apple's best-kept secret", so we will use both of them. Thanks to the 89 respondents. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Deadlock

2007-11-16 Thread Simon McLean
Hi All - We have a deadlock problem with an app. Typically in such situations I follow Andrew Lindesay's excellent tutorial on using JDB to grab a thread dump off a hung instance and start digging from there. However, with this particular deadlock JDB doesn't work - i type "jdb -attach 81

Re: Say Hello with 2 Problems^^

2007-11-16 Thread Ken Ishimoto
Hi, Thanks for answer. I was installing now the latest build 4643. Some Problem. Now I made a fresh install of Eclipse 3.3.1.1 & 4643, and the New -> WebObjects Application works fine again. No idea why that strange behavior. Thanks, very much. Only the Error that I get from JavaEOGenera

Configuring & Extending D2WList

2007-11-16 Thread Steve Sharman
Dear all, I'm using instances of D2WList within an application on a number of pages - purely because it gives me a quick and simple one line way of displaying particular large data sets from my model, without having to manually put together things like display groups. However I now find