Concurrency Issue

2010-04-06 Thread Andrew Lindesay
Hello; I thought I'd ask if anybody else has had any experience with this one? > java.util.ConcurrentModificationException > at java.util.HashMap$HashIterator.nextEntry(HashMap.java:793) > at java.util.HashMap$KeyIterator.next(HashMap.java:828) > at com.webobjects.foundation.NSDictionary.(N

Re: You don't have permission to access/cgi-bin/WebObjects/TheApp.woa/-5579 on this server.

2010-04-06 Thread Mitchell Smith
The default Apache configuration is to restrict access to the entire filesystem and only allow access to the contents of your DocumentRoot. So normally you would have deny rules on and allow rules for or where ever your DocumentRoot is configured. but as /cgi-bin/WebObjects/YourApp.woa is

Re: [OT] help moving server to new IP

2010-04-06 Thread Mitchell Smith
This sounds like a problem in your Apache config. You might have an entry such as Listen :80 or maybe NameVirtualHost :80 You could update this directly in your /etc/httpd/httpd.conf but it might get overwritten by Server Admin, so you'll probably want to update it with Server Admin instead

Re: You don't have permission to access /cgi-bin/WebObjects/TheApp.woa/-5579 on this server.

2010-04-06 Thread rainer
> > On 2010-04-06, at 3:06 PM, David LeBer wrote: > Thanks everyone, found it. > > > Options FollowSymLinks > AllowOverride None > Order deny,allow > Deny from all > > > vs: > > > Options FollowSymLinks > AllowOverride None > #Order deny,allow > #Deny from all >

Re: You don't have permission to access /cgi-bin/WebObjects/TheApp.woa/-5579 on this server.

2010-04-06 Thread David LeBer
On 2010-04-06, at 3:06 PM, David LeBer wrote: > Hey all, > > I'm on Snow Leopard and my dev environment is not letting me connect to my > app with direct connect disabled. Sheepishly, I can't remember whether this > has worked since I updated to SL. Does anyone have a working apache2 > httpd

You don't have permission to access /cgi-bin/WebObjects/TheApp.woa/-5579 on this server.

2010-04-06 Thread David LeBer
Hey all, I'm on Snow Leopard and my dev environment is not letting me connect to my app with direct connect disabled. Sheepishly, I can't remember whether this has worked since I updated to SL. Does anyone have a working apache2 httpd.conf file they could send me that I could compare against m

Re: [OT] WOWODC room block

2010-04-06 Thread Pascal Robert
Le 10-04-06 à 13:13, Pascal Robert a écrit : Quick note : to reserve within the WOWODC room block, you have to specify the room block code : 100827WOWO. For now, reservations within the room block have to be made by phone, but the hotel is creating a custom link so that people can reserve

Re: Strange 10.6 deployment issue

2010-04-06 Thread Greg Lappen
Dennis- That did the trick, thank you very very much! Greg On Apr 6, 2010, at 1:01 PM, Gaastra Dennis - WO Lists wrote: > Hi Greg, > > IMPORTANT: Make sure that in etc/apache2/httpd.conf, the following is removed > or commented out: (OS Upgrade 10.6.2 -> 10.6.3 put this line back in) >

Re: EOModel SQL Statement

2010-04-06 Thread Benjamin Chew
If the numeric suffix is the only part of the policy number that changes, then you can use: WHERE PolicyNumber >= 'KD/FGH/3345/NNN/1000' and PolicyNumber <= ' KD/FGH/3345/NNN/1090' Ben On Tue, Apr 6, 2010 at 7:48 AM, Gino Pacitti wrote: > Can someone help with a SQL statement to return rows...

Re: EOModel SQL Statement

2010-04-06 Thread Chuck Hill
On Apr 6, 2010, at 7:48 AM, Gino Pacitti wrote: Can someone help with a SQL statement to return rows... I have a field (varchar) which is used to store a PolicyNumber - something like KD/FGH/3345/NNN/1000 They are stored sequentially and go up to KD/FGH/3345/NNN/5000 I need to select a se

[OT] WOWODC room block

2010-04-06 Thread Pascal Robert
Quick note : to reserve within the WOWODC room block, you have to specify the room block code : 100827WOWO. For now, reservations within the room block have to be made by phone, but the hotel is creating a custom link so that people can reserve a room inside the room block online. About t

Re: Strange 10.6 deployment issue

2010-04-06 Thread Gaastra Dennis - WO Lists
Hi Greg, IMPORTANT: Make sure that in etc/apache2/httpd.conf, the following is removed or commented out: (OS Upgrade 10.6.2 -> 10.6.3 put this line back in) ScriptAlias /cgi-bin/ /Library/WebServer/CGI-Executables/ With Kind Regards, Dennis Gaastra, Chief Technology Officer, WEBAPPZ®

Strange 10.6 deployment issue

2010-04-06 Thread Greg Lappen
Hi all, We have a WebObjects application that has been working find on Panther, Leopard, etc. Now we are trying to deploy it on a 10.6 server powered mini. I followed the instructions at http://wiki.objectstyle.org/confluence/display/WO/Programming__WebObjects-Web+Applications-Deployment-Mac+

WOCommunity Maven repository is down again

2010-04-06 Thread Henrique Prange
Hello Maven fellows, Sorry for the inconvenience again, but the WOCommunity Maven repository is down. :( Cheers, Henrique ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.

EOModel SQL Statement

2010-04-06 Thread Gino Pacitti
Can someone help with a SQL statement to return rows... I have a field (varchar) which is used to store a PolicyNumber - something like KD/FGH/3345/NNN/1000 They are stored sequentially and go up to KD/FGH/3345/NNN/5000 I need to select a set that is something like KD/FGH/3345/NNN/1000 - K

Re: [OT] help moving server to new IP

2010-04-06 Thread Neil MacLennan
First of all I would use OSX server's 'changeip' command: http://support.apple.com/kb/TA24015?viewlocale=en_US and, on your server from the command line: man changeip ...built for this very job. I'm not sure all the files that it updates. Not sure if apache's httpd.conf is one of them. In any ev