Re: question about WebObjectsAlias

2013-05-08 Thread Tim Worman
Well, that doesn't seem like it works in my situation. I have a component that is used for HTML email. The embedded direct action link still has a /cgi-bin based URL when the email is received. I may have to do some of this in code. Maybe some rewrite rules will address it too. Tim On May 8,

Re: question about WebObjectsAlias

2013-05-08 Thread Chuck Hill
Try adding WOCGIAdaptorURL http://foo.com/whatever/WebObjects to your launch parameters. Chuck On 2013-05-08, at 2:27 PM, Tim Worman wrote: > I have changed WebObjectsAlias in my apache conf. I have a WOHyperlink bound > to a DirectAction in my app. Of course, when it is called in my app, the

question about WebObjectsAlias

2013-05-08 Thread Tim Worman
I have changed WebObjectsAlias in my apache conf. I have a WOHyperlink bound to a DirectAction in my app. Of course, when it is called in my app, the direct action returns a URL with ***/cgi-bin/WebObjects/*** - which won't work. To others that use this approach - do you generally handle this wi

Re: centos 6.2 - pulling my hair out

2013-05-08 Thread John Huss
> > In wotaskd.woa/Contents/Resources there is a file named SpawnOfWotaskd.sh > > The default is this: > > $@ 1>/dev/null 2>&1 & > > I'll try this next. Thanks for all the suggestions. > > > Change that to a real path and see if you get anything useful. > This will tell you why it is failing to la

Re: centos 6.2 - pulling my hair out (PARTIALLY SOLVED)

2013-05-08 Thread Tim Worman
On May 8, 2013, at 11:16 AM, Chuck Hill wrote: > > On 2013-05-08, at 11:11 AM, Tim Worman wrote: > >> Oh….my……God. Done. I had changed that ….. and changed it back. So, I'm only >> guilty of temporary insanity - as far as you know. > > :-) > > >> So, what do you make of the thing I raised a

Re: centos 6.2 - pulling my hair out (PARTIALLY SOLVED)

2013-05-08 Thread Chuck Hill
On 2013-05-08, at 11:11 AM, Tim Worman wrote: > Oh….my……God. Done. I had changed that ….. and changed it back. So, I'm only > guilty of temporary insanity - as far as you know. :-) > So, what do you make of the thing I raised about SpawnOfWotaskd.sh? Is what I > suggested about the LOG path

Re: centos 6.2 - pulling my hair out (PARTIALLY SOLVED)

2013-05-08 Thread Tim Worman
Oh….my……God. Done. I had changed that ….. and changed it back. So, I'm only guilty of temporary insanity - as far as you know. So, what do you make of the thing I raised about SpawnOfWotaskd.sh? Is what I suggested about the LOG path possible? Tim On May 8, 2013, at 10:53 AM, Chuck Hill wrote

Re: centos 6.2 - pulling my hair out (PARTIALLY SOLVED)

2013-05-08 Thread Chuck Hill
This is sounding less painful now. :-) Check the WO configuration for Apache: # Host List Configuration # wotaskd is started automatically on supported platforms, # so this is the default mode. # The apache module gets its configuration from the wotaskds # listed on the configuration line # For

Re: centos 6.2 - pulling my hair out (PARTIALLY SOLVED)

2013-05-08 Thread Tim Worman
The app runs now but I get the dreaded "The requested application was not found on this server." SpawnOfWotaskd.sh has this: # Log messages will be written to: LOG=/Library/WebObjects/Logs That path does not exist on CentOS. The script tries to log to that path when /tmp/logWebObjects exists.

Re: centos 6.2 - pulling my hair out

2013-05-08 Thread Tim Worman
Honestly, I've tried numerous different things in /etc/hosts. Currently,this is what I have in there: 127.0.0.1 localhost localhost.localdomain .local The loopback entries are pretty much the default I think. I really appreciate all the advice - it's got to be something close.

Re: AjaxModalDialog.update and quotes

2013-05-08 Thread Theodore Petrosky
yes, but how would you do the same thing using a localizable string. and would you have to escape the quote in the French.lproj file? --- On Wed, 5/8/13, Pascal Robert wrote: > From: Pascal Robert > Subject: AjaxModalDialog.update and quotes > To: "WebObjects Development" > Date: Wednesday, M

Re: [ANN] WOUnit 1.2.2

2013-05-08 Thread Henrique Prange
Hi Samuel, On 03/05/2013, at 12:34, Samuel Pelletier wrote: > Hi, > > I would like to add tests to a WO framework with business logic, wounit seems > a good tool but I cannot get it. > > I tried to import the sources in Eclipse but I only got a bunch of errors. > I've removed Eclipse config

Re: [ANN] WOUnit 1.2.2

2013-05-08 Thread Henrique Prange
Hi Michael, I've removed Eclipse configuration files from the source repository (using .gitignore). This way, Eclipse will generate the required files according to your environment setup when you import the project. I've also added instructions on how to build WOUnit with Maven and Ant to the r

Re: WOMetaRefresh anyone?

2013-05-08 Thread John Huss
You can always use the actual component name: John On Wed, May 8, 2013 at 8:58 AM, Lars Sonchocky-Helldorf < lars.sonchocky-helld...@xyrality.com> wrote: > Hi List, > > is WOMetaRefresh still available with wonder? What would be the > appropriate tag? I tried but that doesn't seem to work. >

Re: Triggering AjaxObserveField through javascript

2013-05-08 Thread Taylor Hadden
Hi Tobias, I ended up using a workaround that is basically your second solution. The "master" pop-up has an AjaxObserveField that both updates the objects behind the scenes and manually updates their AjaxUpdateContainers. Thanks for the assistance! -Taylor taylorchadden.com @drizztmainsword

WOMetaRefresh anyone?

2013-05-08 Thread Lars Sonchocky-Helldorf
Hi List, is WOMetaRefresh still available with wonder? What would be the appropriate tag? I tried but that doesn't seem to work. Google did not bring up something particular useful (or I am just to stupid). cheers, Lars ___ Do not post admi

Re: centos 6.2 - pulling my hair out

2013-05-08 Thread Altera WO Team
Hi Tim, what do you have in /etc/hosts ? I had to put: 127.0.0.1 localhost ipaddress hostname On a Centos 6.4 i had to fix that before being able to make an app launch via wotaskd, regardless of what i put in the properties… Matteo On 08/mag/2013, at 00:38, Tim Worman wrote: > I just had t

AjaxModalDialog.update and quotes

2013-05-08 Thread Pascal Robert
A quick one: if you are calling AjaxModalDialog.update(context,String), don't forget to escape quotes in the string. I lost 15 minutes this morning because I was doing: AjaxModalDialog.update(context(), "Conflit d'horaire"); and the dialog wasn't updating because of the quote...