Re: Webobjects-dev Digest, Vol 3, Issue 180

2006-03-17 Thread Travis Cripps
Hi Thibault.Noone that I know of. You'd have to "translate" the WebObjects adaptor to work natively with lighttpd.  The source is available though. Come to think of it... another option might be the FastCGI adaptor in ProjectWonder.  It might work with little or no changes required.  So there's no

Lighttpd

2006-03-17 Thread thibault
Hello, I would like to know if somebody tried to use lighttpd instead of Apache for serving WebObjects applications? Regards, Thibault ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev

Re: Implementing a pivot table / cross table

2006-03-17 Thread Jean-François Veillette
Le 06-03-17, à 11:45, Rico Landefeld a écrit : In your case, I do not know you model enough to indicate if a key-path can be found from 'Failure' that will be used to segment it from one bucket from the other. I guess 'Failure' to 'FailureAttribute' is a to-many relationship. If you want to

Re: Tales from the Dark Side

2006-03-17 Thread Mike Schrag
Yeah, I /believe/ the sourceforge CVS server is run off of a Commodore 64 ... Could be wrong on that though. ms On Mar 17, 2006, at 11:18 AM, Andrew Satori wrote: Considering that the CVS server availability has been iffy the past few days, that would be great, though I think some of us nee

Re: Implementing a pivot table / cross table

2006-03-17 Thread Rico Landefeld
In your case, I do not know you model enough to indicate if a key-path can be found from 'Failure' that will be used to segment it from one bucket from the other. I guess 'Failure' to 'FailureAttribute' is a to-many relationship. If you want to segment 'Failures' based on some sort of element

Re: Tales from the Dark Side

2006-03-17 Thread Andrew Satori
Considering that the CVS server availability has been iffy the past few days, that would be great, though I think some of us need intel bin's as well. Andy On Mar 17, 2006, at 11:04 AM, Mike Schrag wrote: Get the PostgreSQL plugin and the PostgreSQLPlugin.bundle from ProjectWonder. There

Re: Tales from the Dark Side

2006-03-17 Thread Mike Schrag
Get the PostgreSQL plugin and the PostgreSQLPlugin.bundle from ProjectWonder. There is a nightly build server around (I don't have the url at hand, sorry). The PW build server is http://www.mdimension.com/~wonder , however, the PostreSQL Plugin Bundle is native code and the build server doe

Re: Implementing a pivot table / cross table

2006-03-17 Thread Jean-François Veillette
For more insight into this problem domain, check here: http://www.roselladb.com/cross-table.htm There is a jsp library as well (comparable with DynaReporting): http://jpivot.sourceforge.net But this use a custom (XMLA) datasource, this is some kind of standard model to represent pivot-tabl

Re: Session Timeout Question

2006-03-17 Thread Patrick Middleton
On 17 Mar 2006, at 15:00, James Cicenia wrote: Hello - I just implemented a "branded" version of our app. Basically this means that the login in screen and graphics, some contact info, etc., is triggered by the subdomain. This works great... HOWEVER... If a person uses an old expired ses

Re: Implementing a pivot table / cross table

2006-03-17 Thread Jerry W. Walker
Hi, Lachlan, On Mar 17, 2006, at 7:32 AM, Lachlan Deck wrote: Hi there, On 17/03/2006, at 10:19 PM, Jerry W. Walker wrote: I've never implemented a cross table in WO (or in any other environment, for that matter), but if, by cross table, you mean a table used to statistically derive infor

Re: Session Timeout Question

2006-03-17 Thread Rico Landefeld
James Cicenia schrieb: Hello - I just implemented a "branded" version of our app. Basically this means that the login in screen and graphics, some contact info, etc., is triggered by the subdomain. This works great... HOWEVER... If a person uses an old expired session... instead of being

Re: Implementing a pivot table / cross table

2006-03-17 Thread Jean-François Veillette
Le 06-03-17, à 08:51, Rico Landefeld a écrit : hi jean-françois, thank you for your answer. could you send me your class ? that would be nice. for better understanding i'll describe my requirements a little bit deeper. i have a entity "failure" and some "failure attribute" enties like "outcom

Session Timeout Question

2006-03-17 Thread James Cicenia
Hello - I just implemented a "branded" version of our app. Basically this means that the login in screen and graphics, some contact info, etc., is triggered by the subdomain. This works great... HOWEVER... If a person uses an old expired session... instead of being redirected to a new ses

Re: Thread or no thread

2006-03-17 Thread Robert Walker
On Mar 16, 2006, at 8:41 PM, Chuck Hill wrote: On Mar 16, 2006, at 5:34 PM, Art Isbell wrote: On Mar 16, 2006, at 3:24 PM, Mohapatra Ashish wrote: I am back again. This time with a question of where to draw line on horizontal scaling and go for application threading. All WO apps are mult

Re: Implementing a pivot table / cross table

2006-03-17 Thread Rico Landefeld
hi jean-françois, thank you for your answer. could you send me your class ? that would be nice. for better understanding i'll describe my requirements a little bit deeper. i have a entity "failure" and some "failure attribute" enties like "outcome", "occurence", "origin" with relations to "fa

Re: deployng trouble, can you help me?

2006-03-17 Thread Lachlan Deck
Hi there, (removing cross-post: this is not a deployment issue). On 17/03/2006, at 9:17 PM, Amedeo Mantica wrote: I have a file called "menu.js" (target Web Server) inside the group "Web Server Resources", Okay so you have - a file (menu.js) for target in the root directory of your project

Re: Implementing a pivot table / cross table

2006-03-17 Thread Lachlan Deck
Hi there, On 17/03/2006, at 10:19 PM, Jerry W. Walker wrote: I've never implemented a cross table in WO (or in any other environment, for that matter), but if, by cross table, you mean a table used to statistically derive information about the relationships between the row and column eleme

Re: Implementing a pivot table / cross table

2006-03-17 Thread Jean-François Veillette
I first used WOnder's DynaReporting frameworks, which worked as expected. But it was a bit heavy weight for my simple needs, so I re-implemented the core of it, all in a single class. All it does is take a population and segment it based on the dimensions you ask for. The result you get is a H

Re: deployng trouble, can you help me?

2006-03-17 Thread Jean-François Veillette
There is a bug in XCode where when you add a .js to a target, it will put it in the [Source] list of builds files. That mean that it will try to compile this .js file and put the result in the bundle. This is wrong, the file should be in the [Bundle Resources] list of files. To fix it, open

Re: Implementing a pivot table / cross table

2006-03-17 Thread Jerry W. Walker
Hi, Rico, I've never implemented a cross table in WO (or in any other environment, for that matter), but if, by cross table, you mean a table used to statistically derive information about the relationships between the row and column elements, then I question doing it in WO at all. If i

Re: deployng trouble, can you help me?

2006-03-17 Thread Amedeo Mantica
yes, I have tried, now checking logs... thanks Amedeo On 17/mar/06, at 11:32, Aurelien Minet wrote: Amedeo Mantica wrote: sorry if i write to the developement group too. I hhave a file called "menu.js" (target Web Server) inside the group "Web Server Resources", in developement mode works rea

Re: deployng trouble, can you help me?

2006-03-17 Thread Paul Lynch
On 17 Mar 2006, at 10:17, Amedeo Mantica wrote: sorry if i write to the developement group too. Bad. I hhave a file called "menu.js" (target Web Server) inside the group "Web Server Resources", in developement mode works reat, but when I do WebServer and Deplyyment Build, this file is n

deployng trouble, can you help me?

2006-03-17 Thread Amedeo Mantica
sorry if i write to the developement group too. I hhave a file called "menu.js" (target Web Server) inside the group "Web Server Resources", in developement mode works reat, but when I do WebServer and Deplyyment Build, this file is not included inside any .woa. Also if I put manually th

Re: converting from openbase to oracle

2006-03-17 Thread David E
Hi Wojingo and Chuck, thanks for the suggestions. I'll give them ago first thing monday morning and let you know how it went. The funny this is that I did create a displayGroup page to test basic reads and inserts and it worked fine. Dave Original message Date: Fri, 17 Mar 2006 18:30:5

Implementing a pivot table / cross table

2006-03-17 Thread Rico Landefeld
hi all, 'll have to implement an cross table. is there anyone out there who did this with wo before? any suggestions ? i think i'll need much more controll over the sql. is it better to implement it completely with jdbc or should i use raw sql. regards, rico _

Re: converting from openbase to oracle

2006-03-17 Thread wojingo
Hi Dave, On Mar 16, 2006, at 10:06 PM, Dave Elsner wrote: Hi, In the process of migrating all the data from one of our Openbase 8 DB to Oracle 9. To do this I cloned the original EOModel and changed the cloned model to point to the new Oracle 9 DB, and changed all the column data type