Hello World Project - Installation Development

2013-01-14 Thread ute Hoffmann
Hi, I have done a development tools installation with the help of the community wiki. I confirmed that WOLips is installed. All steps on the installation page have been done. This is my first install of eclipse and the wonder toolset, up to now I was a xcode user for WebObjects

Re: Wonder 6.0.0 is out in the wild! / WOStart binaries

2013-01-14 Thread Dr. Markus Stoll
Hi Stéphan, until we found a place, here can you download the binaries http://www2.junidas.de/download/wostart.zip Markus Am 13.01.2013 um 22:28 schrieb Stéphan Mertz s.me...@improve.fr: Hi, Perhaps in the same folder as the sources ? Le 12 janv. 2013 à 12:33, Markus Stoll, junidas

Re: Immortal sessions in production

2013-01-14 Thread Matteo Centro
Sure, here it is: Hi Chuck, I'm posting just to you, I can't have google to index this... anyway, here is the stack trace: java.lang.IllegalMonitorStateException at java.util.concurrent.locks.ReentrantLock$Sync.tryRelease(ReentrantLock.java:127) at

Re: Hello World Project - Installation Development

2013-01-14 Thread Markus Ruggiero
Hi Ute, I am writing a full intro book to Wonder and WebObjects. The initial chapters about setting up the environment are free and available for download from www.kataputt.com. You might want to have a look at it, I think it will answer all (? hopefully!) your questions. Have fun

Re: Hello World Project - Installation Development

2013-01-14 Thread ute Hoffmann
Hi Werner, I think it is the most recent stable version. When I open new, I have Java Project but none of the Wonder ERRest Application types, so something must be wrong. Regards Ute Am 14.01.2013 um 12:01 schrieb Johann Werner: Hi Ute, what version of Eclipse/WOLips do you have

java question

2013-01-14 Thread Theodore Petrosky
I notice in ERDEditDatePopupCommon.java: public NSArray dayList() { if (dayList == null) { dayList = new NSMutableArray(new Object[] { 01,02,03,04,05,06,07,08,09,10, 11,12,13,14,15,16,17,18,19,20, 21,22,23,24,25,26,27,28,29,30,31 }); }

Re: Hello World Project - Installation Development

2013-01-14 Thread speery
In the File/New menu select Other Then in the select a wizard dialog box open the WOLips folder and select Wonder Application there. Steve On Jan 14, 2013, at 7:18 AM, Markus Ruggiero mailingli...@kataputt.com wrote: Hi Ute, I am writing a full intro book to Wonder and WebObjects.

Re: Hello World Project - Installation Development

2013-01-14 Thread ute Hoffmann
Hi Werner, seems I did install an older Version of Eclipse. When I go under project I can choose WOLips and then Wonder Application. This install I startet month ago and finished only now thus my confusion about the versions installed. Regards, Ute Am 14.01.2013 um 12:01 schrieb Johann

Re: java question

2013-01-14 Thread Johann Werner
Hi Ted, there are many places in Wonder that are correct though not optimal. You could change the code you found to public NSArrayString dayList() { if (dayList == null) { dayList = new NSArrayString( 01,02,03,04,05,06,07,08,09,10, 11,12,13,14,15,16,17,18,19,20,

Re: Hello World Project - Installation Development

2013-01-14 Thread speery
The reason it did not show up there is that you are not in the WOLips perspective. Look on the top right of your Eclipse window and it will probably say Java. Click the little '+' button next to it and select Other and then WOLips (You can also use the Window / Open Perspective menu). This will

Re: Hello World Project - Installation Development

2013-01-14 Thread Theodore Petrosky
if it doesn't have the Wonder applications available and you are sure you installed WOLips, then you are not in the WOLips perspective. See those install instructions it will show you the way to enter the WOLips perspective Ted --- On Mon, 1/14/13, ute Hoffmann u.hoffm...@tt-pixelmind.com

My first Hell World App

2013-01-14 Thread ute Hoffmann
Hi, So I found WOLips Perspective thanks to your Help. And I created a helloWorld App and tried to run it in eclipse and get this error: Application: JavaFoundation Error: java.lang.IllegalArgumentException exception Reason: java.lang.IllegalArgumentException: your.app.Application Class

Re: My first Hell World App

2013-01-14 Thread Bastian Triller
your Session import should be your.app.Session. Am Montag, den 14.01.2013, 16:52 +0100 schrieb ute Hoffmann: Hi, So I found WOLips Perspective thanks to your Help. And I created a helloWorld App and tried to run it in eclipse and get this error: Application: JavaFoundation Error:

Re: My first Hell World App

2013-01-14 Thread Bogdan Zlatanov
Hi Ute, It might be one of these: 1. Incorrect import; 2. Old Wonder version. Which one do you use? 3. Axis related jars in java ext folder: - /Library/Java/Extensions/ - /System/Library/Java/Extensions - JAVA_HOME/lib/ext Cheers On 14 Jan 2013, at 16:52, ute Hoffmann

multiple OSC in the same thread

2013-01-14 Thread Larry Mills-Gahl
I just got a request for a tool to do some what-if comparisons on different analysis environments. My first inclination is to setup two independent object store coordinators to manage separate editing contexts where I can use the same model group to connect to different databases (one is the

Re: multiple OSC in the same thread

2013-01-14 Thread Theodore Petrosky
forget llamas, Alpaca --- On Mon, 1/14/13, Larry Mills-Gahl elem...@gmail.com wrote: From: Larry Mills-Gahl elem...@gmail.com Subject: multiple OSC in the same thread To: WebObjects-Dev List webobjects-dev@lists.apple.com Date: Monday, January 14, 2013, 11:33 AM I just got a request for a

Re: My first Hell World App

2013-01-14 Thread Jesse Tayler
doesn't that basically mean that when you imported the session you wanted to inherit from, you picked up some kind of axis session instead you should have picked up WOSession. so, I think that's just a Java import package problem? check the top of your java file when what and how Session is

Re: My first Hell World App

2013-01-14 Thread speery
I just ran into this recently doing one of the sample applications. I think it is a class path error caused by finding the object named Session in org.apache.axis.session.Session before it finds the one in your application source. I removed the conflict by right clicking on the project in

Re: My first Hell World App

2013-01-14 Thread James Cicenia
This too Make sure in your Eclipse Preferences -- WOLips-- Build Preferences settings you don't have Generate Bundle checked. That has bit me twice now and consumed many frustrating hours. On Jan 14, 2013, at 10:57 AM, spe...@me.com wrote: I just ran into this recently doing one of the

How to contribute ?

2013-01-14 Thread Gavin Eadie
On Jan 14, 2013, at 12:25 PM, James Cicenia ja...@jimijon.com wrote: Make sure in your Eclipse Preferences -- WOLips-- Build Preferences settings you don't have Generate Bundle checked. That has bit me twice now and consumed many frustrating hours. A diversion from a grumpy Gavin using

Re: Possible Bug in ERXTimestampUtility

2013-01-14 Thread Johann Werner
Hi Louis, can you wrap that up into a pull request patching ERXTimestampUtilities instead of ERXTimestampUtility (which has been deprecated)? If you already wrote some testing code you could add that to ERXTest too :-) Am 10.12.2012 um 22:20 schrieb Louis Demers louisdem...@mac.com: Hi, I

Fwd:

2013-01-14 Thread sirius black
http://www.zingarifelici.it/e4kjbj.php ___ 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: How to contribute ?

2013-01-14 Thread Johann Werner
Hi Gavin, Am 14.01.2013 um 20:55 schrieb Gavin Eadie ga...@umich.edu: On Jan 14, 2013, at 12:25 PM, James Cicenia ja...@jimijon.com wrote: Make sure in your Eclipse Preferences -- WOLips-- Build Preferences settings you don't have Generate Bundle checked. That has bit me twice now and

Re: Small change to properties loading

2013-01-14 Thread Paul Hoadley
Hi Johann and Ken, On 13/01/2013, at 7:34 PM, Paul Hoadley pa...@logicsquad.net wrote: Hi Johann and Ken, Could either of you elaborate on this further? Specifically: Come on Johann, I know you're there... :-) I just want to see it confirmed in black and white that this is entirely

Re: My first Hell World App

2013-01-14 Thread Ramsey Gurley
I think WO tries to find the class by simple name and defaults to the first one it finds. There's a way to tell _NSUtilities what class to use explicitly I believe. Also, Why is the JavaXML framework still a default in WO projects anyway? It quadruples the size of build logs and far better XML

Re: How to contribute ?

2013-01-14 Thread Paul Hoadley
Hi Gavin, On 15/01/2013, at 6:25 AM, Gavin Eadie ga...@umich.edu wrote: For another example, I've no idea why *.api files are included in a deployment build Good question. Historical oversight? when they are a purely build-time artifact (aren't they?). They're a development-time

Re: Small change to properties loading

2013-01-14 Thread Johann Werner
Am 15.01.2013 um 00:00 schrieb Paul Hoadley pa...@logicsquad.net: Hi Johann and Ken, On 13/01/2013, at 7:34 PM, Paul Hoadley pa...@logicsquad.net wrote: Hi Johann and Ken, Could either of you elaborate on this further? Specifically: Come on Johann, I know you're there... :-) I

Re: How to contribute ?

2013-01-14 Thread Gavin Eadie
Wow! I feel a lot better now. I said this is a talented and generous group of people and it just proved itself again. (a) my apologies Pascal .. of all the people's names I could screw up, yours is most inappropriate. (b) Chuck was 100% right on the spilt install suggestion (I claim the

Re: Small change to properties loading

2013-01-14 Thread Paul Hoadley
On 15/01/2013, at 9:40 AM, Johann Werner j...@oyosys.de wrote: Come on Johann, I know you're there... :-) I just want to see it confirmed in black and white that this is entirely backwards-compatible. And a paragraph on how to use it if you want to, and its intended purpose would be

Re: Small change to properties loading

2013-01-14 Thread Johann Werner
Ok, last one, really ;) Am 15.01.2013 um 00:26 schrieb Paul Hoadley pa...@logicsquad.net: On 15/01/2013, at 9:40 AM, Johann Werner j...@oyosys.de wrote: Come on Johann, I know you're there... :-) I just want to see it confirmed in black and white that this is entirely

Re: Small change to properties loading

2013-01-14 Thread Paul Hoadley
On 15/01/2013, at 10:17 AM, Johann Werner j...@oyosys.de wrote: Ok, last one, really ;) You love it. Let me just rearrange the reply a little... The bottom line is this: if I'm _not_ using any of these new Properties files, has the load order (of all the pre-existing Properties files)

Re: My first Hell World App

2013-01-14 Thread Ted Archibald
I've had this problem in the past, it was due to a space in the application/project name. I'd stay away from spaces, dashes, periods, slashes, etc. in the app/project name and the in the path to the project. On Mon, Jan 14, 2013 at 5:02 PM, Ramsey Gurley ramseygur...@gmail.comwrote: I think WO

Re: My first Hell World App

2013-01-14 Thread Ted Archibald
Here's what I posted around last year: I can duplicate the bug on my computer by creating a new wonder app called test1.0 Something in wolips doesn't like the period, or at least something on my computer doesn't. On Mon, Jan 14, 2013 at 6:57 PM, Ted Archibald ted.archib...@gmail.comwrote:

Re: How to contribute ?

2013-01-14 Thread Ted Archibald
For another example, I've no idea why *.api files are included in a deployment build Good question. Historical oversight? when they are a purely build-time artifact (aren't they?). Aren't they included because at one time it was common practice to edit components on the fly without

Re: How to contribute ?

2013-01-14 Thread Ted Archibald
I concur seems crazy to me. I just seem to recall the old Apple documentation placed alot of emphasis on writing your business logic once, building once, then editing your components to suite your needs. But I could be wrong, I haven't read that stuff in years. On Mon, Jan 14, 2013 at 7:37 PM,

Re: Small change to properties loading

2013-01-14 Thread ISHIMOTO Ken
Hi all. This feature is already in Wonder about 6 months, nobody has see a changes and it want hurt nobody. it is only a addition. if the files not there nothing happens, but if the are there it get loaded. it makes it more easy to find what you need. like you said for database connection

Re: Small change to properties loading

2013-01-14 Thread ISHIMOTO Ken
Again, my other code changes also are not to break somethings, the are all backward compatible and works automatically. i like the automatically stuff or sometimes you can switch it on with a property. Also this was one core change for us because all Apps for years now used this loading