Re: deploy WO 5.3 on OS 10.5

2008-11-20 Thread Guido Neitzer
On 20.11.2008, at 21:15, Lachlan Deck wrote: And for the other side: I'm running two 5.4 applications on a Mac Mini with Tiger. I do "all included" deployments. Cool. That need for me might have just arrived. Is that with apache 1.x on tiger for the 5.4 apps? Yes. Apart from some minor is

Re: deploy WO 5.3 on OS 10.5

2008-11-20 Thread Lachlan Deck
Hi Guido, On 19/11/2008, at 9:19 AM, Guido Neitzer wrote: On 18.11.2008, at 15:17, Hugi Thordarson wrote: FWIW I've been running a couple (simple) WO 5.3 apps on a MacMini/ G4 with Leopard for a couple of months, no (unusual) roadbumps. And for the other side: I'm running two 5.4 applicatio

Re: URL for WebObjects?

2008-11-20 Thread Pascal Robert
Le 08-11-20 à 21:02, Chuck Hill a écrit : On Nov 20, 2008, at 5:39 PM, Johnny Miller wrote: Sorry, I'm totally lost. A while back the JewelryLuv guy wrote a class called ModRewriteWOHyperlink. Is there an equivalent in Wonder? I'd like to be able to just auto-magically generate the the

Re: URL for WebObjects?

2008-11-20 Thread Chuck Hill
On Nov 20, 2008, at 5:39 PM, Johnny Miller wrote: Sorry, I'm totally lost. A while back the JewelryLuv guy wrote a class called ModRewriteWOHyperlink. Is there an equivalent in Wonder? I'd like to be able to just auto-magically generate the the hyperlinks with Wonder and then use apache

Re: URL for WebObjects?

2008-11-20 Thread Mike Schrag
I'd like to be able to just auto-magically generate the the hyperlinks with Wonder and then use apache to translate these urls back to something the WebObjects CGI adaptor understands. Wonder implements this at a lower level and rewrites ALL urls rather than requiring you to use custom compon

Re: URL for WebObjects?

2008-11-20 Thread Johnny Miller
Sorry, I'm totally lost. A while back the JewelryLuv guy wrote a class called ModRewriteWOHyperlink. Is there an equivalent in Wonder? I'd like to be able to just auto-magically generate the the hyperlinks with Wonder and then use apache to translate these urls back to something the WebO

Re: Migation failed when updating a table

2008-11-20 Thread Mike Schrag
I would guess it's the table named "USER" which is a reserved word ... It probably should be quoting that table name. I don't know if that's a bug in the FB PlugIn for that particular schema sync method or not, but picking "user" as a table name is usually a bad idea in general. ms On Nov

Re: URL for WebObjects?

2008-11-20 Thread Chuck Hill
Wonder can create them going out. mod_webobjects is used to handle them coming in. Chuck On Nov 20, 2008, at 4:41 PM, Johnny Miller wrote: Which package in Wonder do you use to create rewrite URLs? I've been doing it the mod_rewrite way and would love a new solution. Thanks Jon On Nov

Re: URL for WebObjects?

2008-11-20 Thread Johnny Miller
Which package in Wonder do you use to create rewrite URLs? I've been doing it the mod_rewrite way and would love a new solution. Thanks Jon On Nov 20, 2008, at 2:35 PM, [EMAIL PROTECTED] wrote: Message: 2 Date: Thu, 20 Nov 2008 18:07:45 -0600 From: Miguel Angel Torres Avila <[EMAIL PROTE

Re: Migation failed when updating a table

2008-11-20 Thread Mitchell Smith
You are setting your column to "NOT NULL" so if you have existing rows in the table the alter table will fail unless you provide a default value for the column. userTable.existingColumnNamed("password").defaultValue(""); then setAllowsNull(false) - Original Message - Fr

Re: URL for WebObjects?

2008-11-20 Thread Miguel Angel Torres Avila
Ohhh,Ok, I was a little confuse. Now it is totally clear.Thanks.On Nov 20, 2008, at 12:21 PM, Guido Neitzer wrote:On 20.11.2008, at 11:13, Miguel Angel Torres Avila wrote: I am not using a Wonder app, so can I use Appache Rewrite Rule with Original WebObjects app? You can, but you'll still have t

ThumbnailMaker.java

2008-11-20 Thread james o'loughlin
decided to redo my old thumbnail code and found a solution that generates high quality thumbnails by "stepping" down large images in half before getting to the final size. makes high-quality thumbs. enjoy, ./james import java.awt.Color; import java.awt.Graphics2D; import java.awt.Rendering

Re: capistrano deployments w/ wo

2008-11-20 Thread Lachlan Deck
On 20/11/2008, at 7:33 PM, Denis Frolov wrote: On Wed, Nov 19, 2008 at 2:29 PM, Lachlan Deck <[EMAIL PROTECTED]> wrote: Currently we're pulling builds from bamboo. So after each svn commit bamboo runs the build (maven in my case, which produces a tar.gz for both the app and webserver resour

Re: Non Responsive WO APPS

2008-11-20 Thread Fabian Peters
Hi, I've found monit to be both lightweight and versatile: cheers, Fabian Am 20.11.2008 um 18:24 schrieb Michael DeMan (WO): Standard network monitoring tools will do this, and some can be configured to post to a form and analyze the HTML response

Re: Non Responsive WO APPS

2008-11-20 Thread Michael DeMan (WO)
Standard network monitoring tools will do this, and some can be configured to post to a form and analyze the HTML response and ensure it matches as expected. They will watch a lot more too if you enable SNMP - disk utilization, CPU, memory utilization, etc for the server. nagios - old indust

Re: URL for WebObjects?

2008-11-20 Thread Guido Neitzer
On 20.11.2008, at 11:13, Miguel Angel Torres Avila wrote: I am not using a Wonder app, so can I use Appache Rewrite Rule with Original WebObjects app? You can, but you'll still have to CREATE nice looking URLs in your application somehow. As I said, the easiest way is using Wonder. mod_re

Re: URL for WebObjects?

2008-11-20 Thread Miguel Angel Torres Avila
Thanks Guido,I am not using a Wonder app, so can I use Appache Rewrite Rule with Original WebObjects app?On Nov 20, 2008, at 11:04 AM, Guido Neitzer wrote:Please note, that this will only work like that if you are using a Wonder application. http://wiki.objectstyle.org/confluence/display/WONDER/Tu

Re: Non Responsive WO APPS

2008-11-20 Thread Pascal Robert
We use Nagios with the check_http plugin. With the plugin, you can check if a string is part of the answer, so if the specified string is not in the response you get a page or email with a warning saying that the string was not found. Hi All Any one can advise me on some piece of software

Re: Non Responsive WO APPS

2008-11-20 Thread Aurélien Minet
Hi, A colleague has wrote a little application called WOAlive : http://www.univ-lr.fr/apps/support/woalive/index.html (sorry all is in french) In some cases WebObjects applications are blocked without the associated java process ends and the application (in this state) still continues to send WOL

Re: Migation failed when updating a table

2008-11-20 Thread Gustavo Pizano
I forgto to mention that name the new migrationClass1 G On 20.11.2008, at 18:47, Gustavo Pizano wrote: Hello, well I run the migrationClass0 and it run fine, the db was created and everything , but then I forgot I needed another attribute in one entity, I used @Override public void upgra

Migation failed when updating a table

2008-11-20 Thread Gustavo Pizano
Hello, well I run the migrationClass0 and it run fine, the db was created and everything , but then I forgot I needed another attribute in one entity, I used @Override public void upgrade(EOEditingContext editingContext, ERXMigrationDatabase database) throws Throwable { ER

Re: Non Responsive WO APPS

2008-11-20 Thread Andrew Lindesay
Hello; BTW; If you are using wotaskd deployment and take this route of monitoring instances through the adaptor with something like ".../ Foo.woa/123/wa/..." then it is a good idea to return the instance number 123 in the monitoring response and check it in the monitoring software. The re

Re: Non Responsive WO APPS

2008-11-20 Thread Guido Neitzer
On 20.11.2008, at 09:32, Gino Pacitti wrote: Any one can advise me on some piece of software that can monitor WOApps actually live and taking requests.. I run a few and once in a while one goes down with a 'No Instance Available' and don't find out about it until I get a call from a clien

Re: URL for WebObjects?

2008-11-20 Thread Guido Neitzer
Please note, that this will only work like that if you are using a Wonder application. http://wiki.objectstyle.org/confluence/display/WONDER/Tutorials cug On 20.11.2008, at 09:20, Miguel Angel Torres Avila wrote: Ok, Thanks, I will try it. On Nov 20, 2008, at 10:10 AM, Pascal Robert wrote

Re: Totally New

2008-11-20 Thread Gustavo Pizano
On 20.11.2008, at 16:35, Mike Schrag wrote: I'd say it takes too long if you need to learn for yourself. One should either get training or work in a shop where it's used. I 100% agree with this. WO is a little bit mind-bending, in a cool way, if you're coming from most other frameworks. It

Non Responsive WO APPS

2008-11-20 Thread Gino Pacitti
Hi All Any one can advise me on some piece of software that can monitor WOApps actually live and taking requests.. I run a few and once in a while one goes down with a 'No Instance Available' and don't find out about it until I get a call from a client - is there anything that can monitor

Re: URL for WebObjects?

2008-11-20 Thread Miguel Angel Torres Avila
Ok, Thanks, I will try it.On Nov 20, 2008, at 10:10 AM, Pascal Robert wrote:It depends if you are using virtual hosts or not. If you don't, you can add it to httpd.conf, if you're using virtual hosts on Mac OS X Server (10.4), add the rule in the file created for your virtual hosts (the file shou

Re: URL for WebObjects?

2008-11-20 Thread Pascal Robert
It depends if you are using virtual hosts or not. If you don't, you can add it to httpd.conf, if you're using virtual hosts on Mac OS X Server (10.4), add the rule in the file created for your virtual hosts (the file should be in /etc/httpd/sites). This is very helpful!. Thanks for the ex

Re: Totally New

2008-11-20 Thread Kieran Kelleher
Welcome Bob, FWIW, I had education/experience in C, Fortran77 and some other languages and zero Java knowledge when I learned by myself circa 2003 (I had no training funds unfortunately), *however*, IIRC, the things that made it easier to learn were: 1) Watching/studying the WebObjects WWD

Re: Totally New

2008-11-20 Thread David Holt
+1 :-) On 20-Nov-08, at 7:40 AM, David LeBer wrote: Having said that, it is possible to learn on your own. I did. Just expect to spend a fair amount of time staring at the contents of WODev posts waiting for the lightbulbs to go off. ___ Do not

Re: URL for WebObjects?

2008-11-20 Thread Miguel Angel Torres Avila
This is very helpful!.Thanks for the explanation.Could you please tell me the file where I can set the rule in Apache 1.3?Is the httpd.conf file?Thanks in advance.On Nov 19, 2008, at 8:36 PM, Guido Neitzer wrote:On 19.11.2008, at 19:17, Timothy Reaves wrote:I thought that when a site used WebObje

Re: Totally New

2008-11-20 Thread Mike Schrag
Or, shameless plug, one can buy the WOWODC recordings :-) Too bad the recording of Guido and Jay session at WWDC 2008 is not available standalone, you have to buy the whole IT track to get the session. Of course, you should buy the WOWODC recordings regardless of your expertise level :) ms

Re: Totally New

2008-11-20 Thread David LeBer
On 20-Nov-08, at 10:23 AM, Mike Schrag wrote: Patiente, a lot of it. WO is not something you can learn in a few weeks or even months. I'll challenge this one ... For "mastery," sure, but we had a new senior level guy (with a Java/Hibernate/J2EE background) comfortably writing WO apps withi

Re: Totally New

2008-11-20 Thread Pascal Robert
Or, shameless plug, one can buy the WOWODC recordings :-) Too bad the recording of Guido and Jay session at WWDC 2008 is not available standalone, you have to buy the whole IT track to get the session. But I agree it's harder to learn it if you don't have anyone near you who can help you ou

Re: Totally New

2008-11-20 Thread Mike Schrag
I'd say it takes too long if you need to learn for yourself. One should either get training or work in a shop where it's used. I 100% agree with this. WO is a little bit mind-bending, in a cool way, if you're coming from most other frameworks. It's very useful to have someone who knows what

Re: Totally New

2008-11-20 Thread Anjo Krank
I'd say it takes too long if you need to learn for yourself. One should either get training or work in a shop where it's used. Cheers, Anjo Am 20.11.2008 um 16:23 schrieb Mike Schrag: Patiente, a lot of it. WO is not something you can learn in a few weeks or even months. I'll challenge this

Re: Totally New

2008-11-20 Thread Mike Schrag
Patiente, a lot of it. WO is not something you can learn in a few weeks or even months. I'll challenge this one ... For "mastery," sure, but we had a new senior level guy (with a Java/Hibernate/J2EE background) comfortably writing WO apps within a few weeks. We had two junior guys that were

Re: Totally New

2008-11-20 Thread Miguel Arroz
Hi! On 2008/11/20, at 13:36, Bob Gordon wrote: Hello, I have been reading about WebObjects, and decided it was worth looking into further. That's a smart decision. :) WO looks old-school and hard to learn, but it's actually a very strong framework, very well conceived, and it easily

Re: Totally New

2008-11-20 Thread Pascal Robert
Hello Bob, Hello, I have been reading about WebObjects, and decided it was worth looking into further. Where to begin? http://www.wocommunity.org/getting_started_with_webobjects.html What would be the best book for a novice (does know Java)? You need Java knowledge, but you don't nee

Totally New

2008-11-20 Thread Bob Gordon
Hello, I have been reading about WebObjects, and decided it was worth looking into further. Where to begin? What would be the best book for a novice (does know Java)? Are new projects being done with WebObjects (is there a future)? Any other suggestions? Thank you. -Bob

Re: capistrano deployments w/ wo

2008-11-20 Thread Denis Frolov
Hi Lachlan, On Wed, Nov 19, 2008 at 2:29 PM, Lachlan Deck <[EMAIL PROTECTED]> wrote: > Hi Michael, > > On 19/11/2008, at 6:06 PM, Michael Bushkov wrote: > >> On Tue, Nov 18, 2008 at 11:08 PM, Lachlan Deck <[EMAIL PROTECTED]> >> wrote: >>> >>> <...> >> >> Yes, maybe I simplified things too much. I'