Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Thierry Kramis
Yes. I thinki so to. We're also just starting a new project and that would be one possible way to go. Has anyone tried the integration of Sproutcore and WO and has some sample code? Am 16.06.2008 um 21:19 schrieb Fredrik Lindgren: So to the original question... are there any examples to play

Re: WebObjects 5.4 on Linux (Red Hat Enterprise)

2008-06-16 Thread Joe Little
On Mon, Jun 16, 2008 at 5:41 PM, Lachlan Deck <[EMAIL PROTECTED]> wrote: > On 16/06/2008, at 11:48 PM, David LeBer wrote: > >> On 16-Jun-08, at 9:40 AM, Don Lindsay wrote: >> >>> So, any installer that is used for anything other than OS X, is in >>> violation of the WebObjects license? >> >> Hrm, n

Re: ReportMill can't find Framework?

2008-06-16 Thread James Cicenia
Actually, It is a bug in ReportMills documentation. Or, at the very least ship with a blank .wo file along with relevant java classes. - j- On Jun 16, 2008, at 7:21 PM, Don Lindsay wrote: The application bails after receiving this message. You cannot do anything further. Don On Jun 16

Re: WebObjects 5.4 on Linux (Red Hat Enterprise)

2008-06-16 Thread Lachlan Deck
On 16/06/2008, at 11:48 PM, David LeBer wrote: On 16-Jun-08, at 9:40 AM, Don Lindsay wrote: So, any installer that is used for anything other than OS X, is in violation of the WebObjects license? Hrm, not a lawyer, standard disclaimers apply... I think that installing is fine (especially s

Re: Sparklines?

2008-06-16 Thread Joshua Paul
Found this in my code hairball. YMMV... import java.awt.Color; import java.awt.image.BufferedImage; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.Enumeration; import java.util.Vector; import javax.imageio.ImageIO; import com.representqueens.spark.BarGraph; i

Re: ReportMill can't find Framework?

2008-06-16 Thread Don Lindsay
The application bails after receiving this message. You cannot do anything further. Don On Jun 16, 2008, at 6:05 PM, Q wrote: I only just noticed this thread... for future reference: [2008-06-15 13:10:12 CDT] : Exception occurred while handling request: java.lang.IllegalStateException

Re: ReportMill can't find Framework?

2008-06-16 Thread Don Lindsay
The application bails after receiving this message. You cannot do anything further. Don On Jun 16, 2008, at 6:05 PM, Q wrote: I only just noticed this thread... for future reference: [2008-06-15 13:10:12 CDT] : Exception occurred while handling request: java.lang.IllegalStateException

Re: Sparklines?

2008-06-16 Thread Paul Lynch
+1 for jfreechart here. I haven't used it specifically for sparklines, but it seems easy enough to do, as Google will tell you: http://left.subtree.org/2007/01/15/creating-sparklines-with-jfreechart/ Paul On 16 Jun 2008, at 21:46, James Cicenia wrote: I am quite sure the jFreeChart could h

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Mike Schrag
I do have some thoughts on stateful JSON services, though, to move from the straight RPC route and towards a "component action" model of services. We'll see if it works out or just makes things more confusing :) Although I have not yet encountered it in a commercial setting, there is the

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Simon McLean
I believe you interact using JSON and JSON-RPC. I believe Andrew Lindsay's LEWOStuff framework has code to do that type of thing. I took a look at the Sproutcore stuff, and even installed it. More details on backend web service development assume RoR, but in the end, its just JSON-RPC. So,

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Andrew Lindesay
Hello Mike; I do have some thoughts on stateful JSON services, though, to move from the straight RPC route and towards a "component action" model of services. We'll see if it works out or just makes things more confusing :) Although I have not yet encountered it in a commercial setting,

Re: ReportMill can't find Framework?

2008-06-16 Thread Q
I only just noticed this thread... for future reference: [2008-06-15 13:10:12 CDT] : Exception occurred while handling request: java.lang.IllegalStateException: Unable to find framework named "TOSDevelopment". [2008-06-15 13:10:12 CDT] java.lang.IllegalStateException: Unable to find fr

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Mike Schrag
I believe you interact using JSON and JSON-RPC. I believe Andrew Lindsay's LEWOStuff framework has code to do that type of thing. I took a look at the Sproutcore stuff, and even installed it. More details on backend web service development assume RoR, but in the end, its just JSON-RPC. So, LEW

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Joe Little
On Mon, Jun 16, 2008 at 1:58 PM, John Huss <[EMAIL PROTECTED]> wrote: > I believe you interact using JSON and JSON-RPC. I believe Andrew Lindsay's > LEWOStuff framework has code to do that type of thing. > I took a look at the Sproutcore stuff, and even installed it. More details on backend web s

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread John Huss
I believe you interact using JSON and JSON-RPC. I believe Andrew Lindsay's LEWOStuff framework has code to do that type of thing. John On Mon, Jun 16, 2008 at 12:19 PM, Fredrik Lindgren <[EMAIL PROTECTED]> wrote: > So to the original question... are there any examples to play with, or are > you

Re: Sparklines?

2008-06-16 Thread James Cicenia
I am quite sure the jFreeChart could handle this too. On Jun 16, 2008, at 3:11 PM, Alex Cone wrote: Anyone have a suggestion for something simple to drop into a WO application to display sparklines? Sparkline - Wikipedia, the free encyclopedia __alex cone ceo codefab inc 212 465-

Re: Sparklines?

2008-06-16 Thread Don Lindsay
Hello; There is a project "Sparklines for Java" (http://www.representqueens.com/spark/ ) which will allow you to create a buffered sparks image in your java code. final Number[] data = new Integer[] { 5, 22, 16, 8, 30, 9, 12, 27, 19, 22 }; // width, height, spacing final SizeParams param

Re: Sparklines?

2008-06-16 Thread jerry porter
Hello, There are some interesting tools from this site. A don't know if they will satisfy your needs, but give it a llok. http://www.fusioncharts.com/ Being human is the strangest thing I have ever done. Jerry Porter --- On Mon, 6/16/08, Alex Cone <[EMAIL PROTECTED]> wrote: > From: Ale

Re: Sparklines?

2008-06-16 Thread Simon McLean
Hi Alex - I've been doing some work on a WO framework that implements Googles chart API. This API includes sparklines, but i've not got that bid done yet. It's seriously easily to work with though so might be worth you starting there. http://code.google.com/apis/chart/ http://code.goog

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Don Lindsay
Looks like the sproutcore website is down. :( Was going to take a peek at it. Don On Jun 16, 2008, at 3:19 PM, Fredrik Lindgren wrote: So to the original question... are there any examples to play with, or are you left alone with the WO - integration? It would be cool to play with a WO b

Sparklines?

2008-06-16 Thread Alex Cone
Anyone have a suggestion for something simple to drop into a WO application to display sparklines? Sparkline - Wikipedia, the free encyclopedia __alex cone ceo codefab inc 212 465-8484 x101 [EMAIL PROTECTED] http://www.codefab.com If you are not living on the edge, you are t

Re: build.xml

2008-06-16 Thread Don Lindsay
Hello Fredrik; The first build.xml that I used you had to remove the if="${never}" from the SSDD and WAR entries to be able to generate SSDD and WAR. The newer one you do not have to modify the build.xml at all. I clicked and unclicked the Servlet Deployment a couple of times in my proj

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Fredrik Lindgren
So to the original question... are there any examples to play with, or are you left alone with the WO - integration? It would be cool to play with a WO backend and sproutcore as an interface. /Fredrik 16 jun 2008 kl. 16.17 skrev David LeBer: On 16-Jun-08, at 10:01 AM, James Cicenia wrot

Re: build.xml

2008-06-16 Thread Fredrik Lindgren
The two build files are very different, the first one is not in synch with the comments in the file, though it seems more "worked" for example: There is no if="${never}" in this build file, but I suppose it uses the servletDeployment flag that can be set via Prop

Re: ReportMill can't find Framework?

2008-06-16 Thread James Cicenia
Got it... You were right... the patternsets had nothing to do with it. I thought I had created a blank wo component. Maybe I forgot to build... I don't know. Anyhow, this time, I started from the top and created a new TOS_PDFPage.wo, with the appropriate java code. Clean and Rinse and now

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread John Huss
I think GWT is pretty compelling in similiar ways to SpoutCore. And with GWT you get to write in Java and you can generate classes for client-side EOs that make it fairly easy to exchange data (but without a client-side editing context of course). If I was writing a Web 2.0 app from scratch with

Re: ReportMill can't find Framework?

2008-06-16 Thread Chuck Hill
On Jun 16, 2008, at 11:06 AM, James Cicenia wrote: I am a bit confused. TOSDevelopment is the name of my project. It is not a component. So, let's take this from the top. I have RMPDFPage.java from Report Mill. I had tried creating a new wo component with its java the same as RMPDFPage.ja

Re: ReportMill can't find Framework?

2008-06-16 Thread James Cicenia
I am a bit confused. TOSDevelopment is the name of my project. It is not a component. So, let's take this from the top. I have RMPDFPage.java from Report Mill. I had tried creating a new wo component with its java the same as RMPDFPage.java. Same error. On Jun 16, 2008, at 11:30 AM, D

Re: Using ERMemoryAdaptor

2008-06-16 Thread Greg Hulands
I created a Properties.junit file that contains the following. dbConnectURLGLOBAL= dbConnectUserGLOBAL= dbConnectPluginGLOBAL=Memory dbConnectDriverGLOBAL= dbEOPrototypesEntityGLOBAL=EOMemoryPrototypes It appears that these settings aren't taking hold... the only thing I could think of is that

Re: ReportMill can't find Framework?

2008-06-16 Thread Don Lindsay
This kind of does apply and kind of doesn't apply, not the same problem but the same cause. :) But it did jog my memory on what I had to do to fix the problem. Create a template for your TOSDevelopment component.Backup your existing java file. Create a new component name TOSDevelopm

Re: Unit testing

2008-06-16 Thread Chuck Hill
On Jun 15, 2008, at 11:41 PM, [EMAIL PROTECTED] wrote: Hi, The problem is that I'm relying on an external API that dynamically loads some classes in which EOEditingContext are directly created. I performed some refactoring in order to ease unit testing but I have the following error : M

Re: ReportMill can't find Framework?

2008-06-16 Thread Chuck Hill
On Jun 15, 2008, at 5:01 PM, Don Lindsay wrote: Hmm, are you trying to generate a report at that point (I.E. use one of the ReportMill components) Do the reportmill components have imports for your entity classes? (line 64 in RM_Dashboard) Make sure you do not have two copies of the Rep

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Chuck Hill
On Jun 16, 2008, at 8:29 AM, Pascal Robert wrote: Don't forget WOX too. With JSON-RPC, SOAP, REST and WOX (for AMF communications), we can covert almost everything. And if Flor stuff works with JavaFX, that's another client platform where we can use WO. But I sad to see that you are stil

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Pascal Robert
Don't forget WOX too. With JSON-RPC, SOAP, REST and WOX (for AMF communications), we can covert almost everything. And if Flor stuff works with JavaFX, that's another client platform where we can use WO. But I sad to see that you are still a JC slave even after WOWODC and WWDC :-P We sho

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread David Avendasora
On Jun 16, 2008, at 10:29 AM, James Cicenia wrote: Ah! Back to the Future of Client Server. Hey, You know Java Client is still alive and well! Besides, with all the new client options, you still don't have EOF _on_ the client. You have to still translate EOs into client-side objects and m

Re: WOWODC Videos

2008-06-16 Thread Pascal Robert
Le 08-06-16 à 11:06, David LeBer a écrit : On 16-Jun-08, at 10:57 AM, Pascal Robert wrote: I think I should write a FAQ about that... Look like the recording is ok for the 5 minutes that I looked at, but I will look at it in full lenght this week-end. We hope to make it available before

Re: WOWODC Videos

2008-06-16 Thread Pascal Robert
I had a couple of them, I'm waiting for the others. Are the presentation slides online somewhere? Thanks, -Dan On 16-Jun-08, at 9:06 AM, David LeBer wrote: On 16-Jun-08, at 10:57 AM, Pascal Robert wrote: I think I should write a FAQ about that... Look like the recording is ok for the 5 m

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Don Lindsay
Again? Arrrggg!! Don On Jun 16, 2008, at 10:29 AM, James Cicenia wrote: Ah! Back to the Future of Client Server. - j- On Jun 16, 2008, at 9:17 AM, David LeBer wrote: On 16-Jun-08, at 10:01 AM, James Cicenia wrote: http://www.appleinsider.com/articles/08/06/16/apples_open_secret_sproutco

Re: WOWODC Videos

2008-06-16 Thread Dan Grec
Are the presentation slides online somewhere? Thanks, -Dan On 16-Jun-08, at 9:06 AM, David LeBer wrote: On 16-Jun-08, at 10:57 AM, Pascal Robert wrote: I think I should write a FAQ about that... Look like the recording is ok for the 5 minutes that I looked at, but I will look at it in fu

Re: WOWODC Videos

2008-06-16 Thread David LeBer
On 16-Jun-08, at 10:57 AM, Pascal Robert wrote: I think I should write a FAQ about that... Look like the recording is ok for the 5 minutes that I looked at, but I will look at it in full lenght this week-end. We hope to make it available before mid- July (I don't want to do video editing o

Re: WOWODC Videos

2008-06-16 Thread Pascal Robert
I think I should write a FAQ about that... Look like the recording is ok for the 5 minutes that I looked at, but I will look at it in full lenght this week-end. We hope to make it available before mid-July (I don't want to do video editing on my birthday :-P), more news on that after I dum

WOWODC Videos

2008-06-16 Thread Lonie, Chris
Did the video recording work this year? Do you have any estimates when they'll be available and the cost? (I tried to attend but could not get management approval, but I'll pay for the videos myself if I have to.) Thanks, Chris ___ Do not post admin

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread James Cicenia
Ah! Back to the Future of Client Server. - j- On Jun 16, 2008, at 9:17 AM, David LeBer wrote: On 16-Jun-08, at 10:01 AM, James Cicenia wrote: http://www.appleinsider.com/articles/08/06/16/apples_open_secret_sproutcore_is_cocoa_for_the_web.html This SproutCore framework is getting a lot of

Re: [Wonder-disc] SproutCore and WO?

2008-06-16 Thread Pascal Robert
Le 08-06-16 à 10:01, James Cicenia a écrit : http://www.appleinsider.com/articles/08/06/16/apples_open_secret_sproutcore_is_cocoa_for_the_web.html This SproutCore framework is getting a lot of play. Anybody here use it yet? I think the most important thing to learn is JSON-RPC... But yes,

Re: SproutCore and WO?

2008-06-16 Thread David LeBer
On 16-Jun-08, at 10:01 AM, James Cicenia wrote: http://www.appleinsider.com/articles/08/06/16/apples_open_secret_sproutcore_is_cocoa_for_the_web.html This SproutCore framework is getting a lot of play. Anybody here use it yet? Just wondering It sure is fun being an Apple developer th

SproutCore and WO?

2008-06-16 Thread James Cicenia
http://www.appleinsider.com/articles/08/06/16/apples_open_secret_sproutcore_is_cocoa_for_the_web.html This SproutCore framework is getting a lot of play. Anybody here use it yet? Just wondering It sure is fun being an Apple developer these days. James Cicenia _

Re: build.xml

2008-06-16 Thread Don Lindsay
Hello James; Can you enter a bug in Jira for any problems you found in the latest Build.xml file? Thanks, Don On Jun 16, 2008, at 9:54 AM, James Cicenia wrote: the first one... that latest build.xml via the ant tools has problems. James Cicenia On Jun 16, 2008, at 8:50 AM, Fredrik Lindgr

Re: build.xml

2008-06-16 Thread James Cicenia
the first one... that latest build.xml via the ant tools has problems. James Cicenia On Jun 16, 2008, at 8:50 AM, Fredrik Lindgren wrote: When making a new WOApp from eclipse I get a build.xml that differs substantially from the one I get when replacing with the latest build.xml (via ant to

build.xml

2008-06-16 Thread Fredrik Lindgren
When making a new WOApp from eclipse I get a build.xml that differs substantially from the one I get when replacing with the latest build.xml (via ant tools). Which one is correct? Regards Fredrik Lindgren ___ Do not post admin requests to the lis

Re: WebObjects 5.4 on Linux (Red Hat Enterprise)

2008-06-16 Thread David LeBer
On 16-Jun-08, at 9:40 AM, Don Lindsay wrote: So, any installer that is used for anything other than OS X, is in violation of the WebObjects license? Hrm, not a lawyer, standard disclaimers apply... I think that installing is fine (especially since I think you are only installing the run t

Re: WebObjects 5.4 on Linux (Red Hat Enterprise)

2008-06-16 Thread Mike Schrag
Oops, let me rephrase, any installer that is used on non-apple hardware. Splitting hairs would be to install on Windows or Linux using VMWare or Parallels, which is on Apple Hardware. No, Q is correct. You can install (deploy) on any hardware. However, if you want to develop WebObjects, it

Re: WebObjects 5.4 on Linux (Red Hat Enterprise)

2008-06-16 Thread Don Lindsay
Oops, let me rephrase, any installer that is used on non-apple hardware. Splitting hairs would be to install on Windows or Linux using VMWare or Parallels, which is on Apple Hardware. Don On Jun 16, 2008, at 9:40 AM, Don Lindsay wrote: So, any installer that is used for anything other than

Re: WebObjects 5.4 on Linux (Red Hat Enterprise)

2008-06-16 Thread Don Lindsay
So, any installer that is used for anything other than OS X, is in violation of the WebObjects license? Don On Jun 16, 2008, at 4:18 AM, Q wrote: On 16/06/2008, at 3:02 PM, Mike Schrag wrote: * Linux (Red Hat Enterprise) Development work must be done on Linux (Red Hat Enterprise). I have

Re: WebObjects 5.4 on Linux (Red Hat Enterprise)

2008-06-16 Thread Q
On 16/06/2008, at 3:02 PM, Mike Schrag wrote: * Linux (Red Hat Enterprise) Development work must be done on Linux (Red Hat Enterprise). I have read something on WOCommunity.org that the initial installation needs are Mac, and after that the packages could be moved to Linux. Is the install

Re: n00b Q:Getting a database entity count

2008-06-16 Thread Johann Werner
Am 15.06.2008 um 23:18 schrieb Rams: On Jun 15, 2008, at 4:17 PM, Johann Werner wrote: Hi Rams, calling entity.relationship.count would fault all objects. I was afraid of that... Look at http://wiki.objectstyle.org/confluence/display/WOL/Count+To-Many+Objects+without+Loading where you g