Re: My first Hell World App

2013-01-21 Thread ute Hoffmann
I did check the header and what was there (I did delete the two non- wonder Apps that didn't work) looked right. It did only import WebObjects, axis was not in the path somewhere. Am 14.01.2013 um 17:45 schrieb Jesse Tayler: doesn't that basically mean that when you imported the session you

Re: My first Hell World App

2013-01-19 Thread Ramsey Gurley
What does your console log look like when the app launches? ute Hoffmann u.hoffm...@tt-pixelmind.com wrote: It does not help, unfortunately. It still shows the same error. I have 2 Partitions on that machine, is it possible that it somehow uses the wrong partition when trying to run that App?

Re: My first Hell World App

2013-01-18 Thread ute Hoffmann
Hi, Thank you for all your suggestions. Removing JavaXML Framework did away with the Session.class error. The import statements seem ok. But now I get a WOPageNotFound Exception: Unable to create Page Main. So it seems there is still something wrong with my installation and the paths. I

Re: My first Hell World App

2013-01-18 Thread ute Hoffmann
Ok, it seems it does not even run my app, in the URL is: JavaFoundation.woa. What did I do wrong? Why does running my App resulting in running JavaFoundation.woa??? I never knew this .woa did even exist, at least not in WebObjects 5.3 and Xcode development. Any idea where to start

Re: My first Hell World App

2013-01-18 Thread Bastian Triller
check your Main class and Project settings in your run configuration under Run-Run configuration-WOApplication-Your App. To be sure that run configuration is started, you can run it from there after applying your changes. Am Freitag, den 18.01.2013, 12:07 +0100 schrieb ute Hoffmann: Ok, it seems

Re: My first Hell World App

2013-01-18 Thread Paul Yu
Very Freudian of you in the subject line. Paul Sent from my iPad On Jan 18, 2013, at 5:58 AM, ute Hoffmann u.hoffm...@tt-pixelmind.com wrote: Hi, Thank you for all your suggestions. Removing JavaXML Framework did away with the Session.class error. The import statements seem ok. But

Re: My first Hell World App

2013-01-18 Thread Ramsey Gurley
Right click on your Application.java file and Debug As - WOApplication. Doing this once should put a proper run target in your run/debug option list. On Jan 18, 2013, at 4:07 AM, ute Hoffmann wrote: Ok, it seems it does not even run my app, in the URL is: JavaFoundation.woa. What did I do

Re: My first Hell World App

2013-01-18 Thread ute Hoffmann
It does not help, unfortunately. It still shows the same error. I have 2 Partitions on that machine, is it possible that it somehow uses the wrong partition when trying to run that App? On the other hand, it seems to find the WebObjects Frameworks under the given path, so it must be on the

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

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

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