Custom Generator or Logicsheet (or something else)?

2003-10-16 Thread Patrick Dobbs
Hi, I'm working with a standard Java webapp. The business logic is in a library of around 300 standard Java classes. There is a management site written in JSP. For each customer implementation we then code custom pages for our customer's public users (with taglibs). However, we want to switch to C

Re: Custom Generator or Logicsheet (or something else)?

2003-10-16 Thread Oleg Dulin
1) Logicsheet. Create a custom logicsheet which wraps calls to the existing class library. Then write generators in XSP. 2) Custom Generators. Code generator(s) which will accept sitemap parameters for filtering what data is needed. 3) Aggregate. Pull in our application data further down the pi

Re: Custom Generator or Logicsheet (or something else)?

2003-10-16 Thread Upayavira
Patrick Dobbs wrote: Hi, I'm working with a standard Java webapp. The business logic is in a library of around 300 standard Java classes. There is a management site written in JSP. For each customer implementation we then code custom pages for our customer's public users (with taglibs). However,

Re: Custom Generator or Logicsheet (or something else)?

2003-10-17 Thread Ugo Cei
Patrick Dobbs wrote: My question is what the best approach to take is. Current ideas include: 1) Logicsheet. Create a custom logicsheet which wraps calls to the 2) Custom Generators. Code generator(s) which will accept sitemap 3) Aggregate. Pull in our application data further down the pipeline Is