Eclipse 4.4 support for WOLips

2014-07-22 Thread Pascal Robert
Someone submitted a pull request for WOLips so that it works on Eclipse 4.4: https://github.com/wocommunity/wolips/tree/Wolfy42-eclipse_4_4 If you are using Eclipse 4.4, please try this branch of WOLips and submit feedback in the pull request (https://github.com/wocommunity/wolips/pull/109).

Hacking PDFs [slightly OT]

2014-07-22 Thread Markus Ruggiero
Folks, I have a large D2W application that generates tons of product spec sheets as PDF. The customer requires that all the PDFs are copy restricted (no copy allowed, just view and print). That all works. Now the customer has the idea that I should bundle all the generated PDFs into one

Re: Hacking PDFs [slightly OT]

2014-07-22 Thread Theodore Petrosky
what framework are you using to create these pdfs? I am using ERJasperReports (my own version to update to the newest JR). I will check again, but this was not difficult in jasperreports. It has a few bugaboos, but nothing insurmountable. On Jul 22, 2014, at 5:59 AM, Markus Ruggiero

Re: Hacking PDFs [slightly OT]

2014-07-22 Thread Hugi Thordarson
Hi Markus. I haven’t worked with copy restricted documents, but I use PDFBox to open and work with password protected documents. At first glance it looks like it might work for you ( http://stackoverflow.com/questions/14700241/remove-encryption-from-pdf-with-pdfbox-like-qpdf ). PDFBox also

Re: app closing method

2014-07-22 Thread Hugi Thordarson
You can override WOSession.terminate() or listen for WOSession.SessionDidTimeOutNotification. Cheers, - hugi On 22.7.2014, at 15:26, Theodore Petrosky tedp...@yahoo.com wrote: If I am in my app, and a session was created, is there a method (that I can override) that is called when the

app closing method

2014-07-22 Thread Theodore Petrosky
If I am in my app, and a session was created, is there a method (that I can override) that is called when the session terminates? Specifically, if the user closes the window (does not log out), I want to do some cleanup before the session disappears totally. Ted

Re: maven.wocommunity.org is down

2014-07-22 Thread Henrique Prange
Pascal, Thanks for reporting. The service is back up. Cheers, Henrique On 21/07/2014, at 15:12, Pascal Robert prob...@macti.ca wrote: I'm getting: Service Temporarily Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems.

D2W app date field is required ???

2014-07-22 Thread Theodore Petrosky
I have a simple D2W app that creates pdfs from various data. I have a report that requires minimally choosing a client, a location and a date for the event. When I am creating a new report, my fields client, date, and location are marked (little red asterisk) as being required. If I leave the

Sharing an EO model between applications... ?

2014-07-22 Thread Chris Klein/IcontactWeb
Folks, I have a webobjects application that I want to split into two separate applications: one to do slow, batch-oriented tasks; the second to manage simple, fast user queries. Ideally, the two applications would exchange data through a database using a common EO model. However, I have no

Re: Sharing an EO model between applications... ?

2014-07-22 Thread Chuck Hill
Hi Chris, The word you are looking for is “framework”. Put the model and EO classes and anything else you want shared in a framework project and include that in the two application projects.

Re: D2W app date field is required ???

2014-07-22 Thread Philippe Rabier
If you have this kind of error, check your validateForSave method. Maybe do you just forget to call super.validateForSave()? There is nothing related to D2W or NSTimestamp attribute. And initializing your attribute with now is crap. If your users delete the value you will have fixed nothing.

Re: Hacking PDFs [slightly OT]

2014-07-22 Thread Paul Hoadley
Hi Markus, On 22 Jul 2014, at 7:29 pm, Markus Ruggiero mailingli...@kataputt.com wrote: Any ideas? Any PDF guru out there? Thanks for any help, I urgently need it. With the same caveat as Hugi (I haven't worked with restricted PDFs), we use Qoppa Software's jPDFProcess library, which at