Job Opportunities

2011-02-10 Thread David den Boer
Good day all, and sorry to spam the list, but his might be useful to one or more of you (or you may know one or more people looking to work in Cupertino for Apple!) My team is looking for : Senior Software Engineer, responsible for WO and Spring/Hibernate applications in a client/server and HTM

Re: Malformed Cookies and WO

2011-02-10 Thread Tom M. Blenko
handleMalformedCookieString() provides the (cookie) string being parsed when the error occurred and the cookies it parsed successfully. If you have a better error recovery strategy, have at it. Tom On Feb 10, 2011, at 6:16 PM, Dov Rosenberg wrote: > Is there any way to just skip over

Re: Malformed Cookies and WO

2011-02-10 Thread Peter Vandoros
Without analysing the code further, it appears the parser tries all that it can to continue parsing the cookie string and fails when it doesn't have any other option. I guess you could try re-writing it in completely different way if you wanted a more controllable mechanism. Regards, Peter O

Re: Malformed Cookies and WO

2011-02-10 Thread Dov Rosenberg
Is there any way to just skip over the bad cookies and continue on - i.e. Like if the malformed cookie is the third out of 5 cookies Thanks Dov Rosenberg On 2/10/11 8:35 PM, "Peter Vandoros" wrote: > "Debugging" _WOCookieParser, an IllegalStateException is thrown when it > encounters a proble

Re: Connection Pooling problems

2011-02-10 Thread Tim Kliewer
Hi All, I have no solution to this issue yet. Let me give some more details. The sequence does exist. It works fine when the connection broker is not enabled. In either case, there are several select statements that work fine, as expected, before a new EO needs to be created. Its only when th

Re: Malformed Cookies and WO

2011-02-10 Thread Peter Vandoros
"Debugging" _WOCookieParser, an IllegalStateException is thrown when it encounters a problem. The exception is caught and WOApplication.application().handleMalformedCookieString() is called. in WOApplication.application().handleMalformedCookieString(), the initialisation parameter is checked an

Re: Malformed Cookies and WO

2011-02-10 Thread Tom M. Blenko
I had the flag running in production on one site for a couple of years (same situation you mention) with no problems - I don't believe it just quits parsing on a single error but I don't know. You might want use WOApplication.handleMalformedCookieString(), which returns cookies successfully pa

Re: Malformed Cookies and WO

2011-02-10 Thread Peter Vandoros
With the initialisation parameter you mention, I believe the CookieParser will stop parsing subsequent cookies once it encounters a malformed one. This means that if the malformed cookie happens to be the first one, as sent by the user's browser, then you application won't receive any subsequent

Re: submit button errors on deployment

2011-02-10 Thread Chuck Hill
Possibly because WOLips loads it. If it does. On Feb 10, 2011, at 2:41 PM, Joe Little wrote: > A new feature of Eclipse 3.6.1? :) > > On Thu, Feb 10, 2011 at 2:37 PM, Chuck Hill wrote: >> On Feb 10, 2011, at 2:08 PM, Joe Little wrote: >>> On Thu, Feb 10, 2011 at 2:04 PM, Chuck Hill >>> wrot

Re: submit button errors on deployment

2011-02-10 Thread Joe Little
A new feature of Eclipse 3.6.1? :) On Thu, Feb 10, 2011 at 2:37 PM, Chuck Hill wrote: > On Feb 10, 2011, at 2:08 PM, Joe Little wrote: >> On Thu, Feb 10, 2011 at 2:04 PM, Chuck Hill wrote: >>> On Feb 10, 2011, at 2:01 PM, Joe Little wrote: >>> That was it. Why oh why does it work in develop

Re: submit button errors on deployment

2011-02-10 Thread Chuck Hill
On Feb 10, 2011, at 2:08 PM, Joe Little wrote: > On Thu, Feb 10, 2011 at 2:04 PM, Chuck Hill wrote: >> On Feb 10, 2011, at 2:01 PM, Joe Little wrote: >> >>> That was it. Why oh why does it work in development? >> >> I am not sure. Is it getting embedded? Is it not installed in your dev >> env

Re: submit button errors on deployment

2011-02-10 Thread Joe Little
On Thu, Feb 10, 2011 at 2:04 PM, Chuck Hill wrote: > > On Feb 10, 2011, at 2:01 PM, Joe Little wrote: > >> That was it. Why oh why does it work in development? > > I am not sure.  Is it getting embedded?  Is it not installed in your dev > environment, so embedding can't find it? Its working w/ W

Re: submit button errors on deployment

2011-02-10 Thread Chuck Hill
On Feb 10, 2011, at 2:01 PM, Joe Little wrote: > That was it. Why oh why does it work in development? I am not sure. Is it getting embedded? Is it not installed in your dev environment, so embedding can't find it? > As for your quip about UNIX knowledge, you got me on that one. Especially

Re: submit button errors on deployment

2011-02-10 Thread Joe Little
That was it. Why oh why does it work in development? As for your quip about UNIX knowledge, you got me on that one. On Thu, Feb 10, 2011 at 1:55 PM, Chuck Hill wrote: > > On Feb 10, 2011, at 1:49 PM, Joe Little wrote: > >> Its embedded, but I'm wondering if there is a version issue with the >> c

Re: submit button errors on deployment

2011-02-10 Thread Chuck Hill
On Feb 10, 2011, at 1:49 PM, Joe Little wrote: > Its embedded, but I'm wondering if there is a version issue with the > classpath, as if something is overriding the methods in a new way. Do you see WOOGNL.framework in /Library/WebObjects/Applications/Affiliates.woa/Contents/Frameworks? It is N

Re: submit button errors on deployment

2011-02-10 Thread Joe Little
Its embedded, but I'm wondering if there is a version issue with the classpath, as if something is overriding the methods in a new way. I don't get a classpath when running in development, but Wonder reports it in deployment, although its not easily parsable to the naked eye :) com.webobjects.cla

Re: Malformed Cookies and WO

2011-02-10 Thread Chuck Hill
I think the default was just to preserve compatibility with previous (albeit broken) versions. I can't think of any security issue or any other reason why you would want malformed cookies to get into your app code. Chuck On Feb 10, 2011, at 12:14 PM, Dov Rosenberg wrote: > We came across a

Re: submit button errors on deployment

2011-02-10 Thread Chuck Hill
Is it missing from the deployment server? Did not get embedded? Classpath is wrong? On Feb 10, 2011, at 11:45 AM, Joe Little wrote: > Yep, it's my status page since I couldn't list multiple entities in one page, > i am instead getting 4 different arrays and creating listpageinterfaces for >

Malformed Cookies and WO

2011-02-10 Thread Dov Rosenberg
We came across a strange issue that took a bit to figure out but thought it would be worthwhile to let everyone else know what happened Problem Some users were having trouble saving a form (WOComponent based) intermittently. Normally these kinds of problems are nearly impossible to figure out

Re: submit button errors on deployment

2011-02-10 Thread Joe Little
Yep, it's my status page since I couldn't list multiple entities in one page, i am instead getting 4 different arrays and creating listpageinterfaces for each similar to the excel look demo. As for wognl, it's enabled, as it works in development mode. On Feb 10, 2011, at 11:17 AM, David LeBer

Re: submit button errors on deployment

2011-02-10 Thread David LeBer
On 2011-02-10, at 2:04 PM, Joe Little wrote: > I'm getting these errors: > > Error: > com.webobjects.appserver._private.WODynamicElementCreationException: > 'action' is a constant. > Reason: > 'action' > is a constant. > > For this section > > >value="$recentN

Re: submit button errors on deployment

2011-02-10 Thread Joe Little
Again, I get these errors only in deployment. On Feb 10, 2011, at 11:04 AM, Joe Little wrote: > I'm getting these errors: > > Error: > com.webobjects.appserver._private.WODynamicElementCreationException: > 'action' is a constant. > Reason: > 'action' > is a constant. > > For this s

Re: Modern D2W Fu questions: ERD2WDisplayToManyList actionable links; multiple entities per page

2011-02-10 Thread Mark Wardle
You can add an inspect button yo the displayPropertyKeys for your embedded list (or I tend to use a dedicated inspect link d2w component that displays a textual property (eg title) that can be given which inspect pageconfiguration to use. Mark -- Dr. Mark Wardle Specialist registrar, Neurology (

submit button errors on deployment

2011-02-10 Thread Joe Little
I'm getting these errors: Error: com.webobjects.appserver._private.WODynamicElementCreationException: 'action' is a constant. Reason: 'action' is a constant. For this section                 In ModernLook. I noticed t