ERRest security

2013-12-04 Thread Michael Kondratov
Does any one on the list have much experience with ERRest security. I am worried about possible injection DDoS attacks etc. Any pointers? Michael Kondratov smime.p7s Description: S/MIME cryptographic signature ___ Do not post admin requests to the lis

Re: WOBootstrap.jar importance

2013-12-04 Thread Raymond NANEON
Hi Henrique, My apps who includes WoInject run since few month without WObootstrap. Thanks to Alexis with an example of launch script on server side. Envoyé de mon iPad > Le 4 déc. 2013 à 01:48, Henrique Prange a écrit : > > Hi Ralf and Alexis, > > Thanks for your answers. The command line l

Re: Inheritance ERRest

2013-12-04 Thread Henrique Prange
Hi all, We've found out this is a bug. The ERRestRequestNode ignores the type field when creating objects for toOne and toMany relationships. We're going to create a pull request to fix this problem soon. BTW, is there a way to verify we didn't introduce a bug in ERRest while trying to fix ano

Re: ERXCryptoString with ERRest

2013-12-04 Thread Henrique Prange
Hi all, I've been working with Elizio on this problem and we are having a hard time. :) We were unable to find the appropriate way to provide custom JSON parsers and writers in ERRest. Is that possible? If so, how? We've found a way to provide a custom writer by extending the ERRestJSONWriter

Re: WOBootstrap.jar importance

2013-12-04 Thread Helmut Tschemernjak
Dear Henrique, WOBootstrap is really an obsolete library, we skipped it on our UNIX based solution installs some years ago. On Windows it could be of help. However, for Windows I have seen an presentation at WOWODC 2013 from a German WO guy where he promoted a native wostarter C-code (or so I

Job Opportunity: WebObjects developer on Gold Coast, Australia

2013-12-04 Thread Quinton Dolan
Just a heads up before this is published publicly: Looking for an experienced Java software developer, preferably with webobjects knowledge to work for a well established SME on the Gold Coast, Australia. Position is full time salary employment working in house on internal systems (this is not a

Re: processRecentChanges makes me sad

2013-12-04 Thread Hugi Thordarson
Does anyone do WO without Wonder anymore? :) But that’s an excellent suggestion, although I’d still prefer to be able to do this without introducing the EC subclass. Slight problem though—in my simplified example I didn’t mention that the mechanism also needs to handle modifications to objects

Re: processRecentChanges makes me sad

2013-12-04 Thread Hugi Thordarson
Hi Johann, Thanks for the idea, but the framework is meant for wider distribution so I’d rather not have it depend on a modified superclass template. Cheers, - hugi On 4.12.2013, at 10:42, Johann Werner wrote: > Hi Hugi, > > a simple – though perhaps not as elegant as you want – solution wo

Re: processRecentChanges makes me sad

2013-12-04 Thread Johann Werner
Hi Hugi, a simple – though perhaps not as elegant as you want – solution would be to create your own EO superclass and override init() (from ERXGenericRecord) where you put your logic: @Override protected voit init(EOEditingContext ec) { super.init(ec); if (this instanceof TimeS

processRecentChanges makes me sad

2013-12-04 Thread Hugi Thordarson
Hi all. I’ve been attempting to automate the setting of some common attributes in my EOs, like creationDate, createdByUser etc. etc. Usually one might populate attributes like that in awakeFromInsertion, but that's boilerplate I’d rather not add to my EO classes. So instead, I’ve taken a differ