Re: With RequestFactory where do utility methods etc live

2012-06-19 Thread salk31
We are trying another approach at the moment. We are generating source by doing some simple transformation of the model source we want to use in the browser. At the moment it is just regexp hack but we have had some success with javaparser ( http://code.google.com/p/javaparser/) although the

With RequestFactory where do utility methods etc live

2012-01-26 Thread salk31
Where can I put code that works on the entity that I can use in the server and the client? e.g. Person and PersonProxy with getSalutation, getFirstName, getLastName and I want getFullName to work on client and server... Where should this code live? The only thing I can think of is to have a new

Re: With RequestFactory where do utility methods etc live

2012-01-26 Thread Thomas Broyer
On Thursday, January 26, 2012 2:36:31 PM UTC+1, salk31 wrote: Where can I put code that works on the entity that I can use in the server and the client? e.g. Person and PersonProxy with getSalutation, getFirstName, getLastName and I want getFullName to work on client and server...