Re: [SOLVED] com.reportmill.base.RMException: Probable fatal error:No fonts found.

2011-06-05 Thread Shravan Kumar. M
Hi David/ Mike, Thanks for your time and suggestions. We have tried Mike's suggestions, but that did not help fix this issue, so we went on doing more investigation... (sorry for the delay in response, we were banging our heads to figure the solution... and lost in the herd ;) ) Finally, we go

Re: update a WOComponentContent from my code?

2011-06-05 Thread Michael Sharp
Hi Ted, I'm not sure that what you're describing as happening is actually the case. AjaxUtils.redirectTo isn't updating an area of your page surrounded by an AjaxUpdateContainer, it's redirecting your browser to a full page component. It sounds like you're interested in updating parts of your a

Re: Session Persistence (Database)

2011-06-05 Thread Ramsey Gurley
If you add sun.io.serialization.extendedDebugInfo=true to your properties, it should give you much better information about what is preventing serialization. But, yeah, what Mike said. It will be a lot of work trying to serialize sessions, because nobody does it so I'm sure there will be

update a WOComponentContent from my code?

2011-06-05 Thread Theodore Petrosky
I have an update Container: WOD MainTableComponentContent : WOComponentContent {} I have a popup and depending on its selection, I fire: MainTable nextPage = pageWithName(MainTable.class);        nextPage.setShowAllIOs(((Session)session()).showAllIOs()); nextPage.setSearchQualifier(((Ses

Re: Session Persistence (Database)

2011-06-05 Thread Kevin Hinkson
On 5 Jun 2011, at 11:36, Mike Schrag wrote: > 1) do you just need users to be auto-logged-in when they come back? just use > cookies To be honest the more I think about it, this is all I need right now, so cookies it is. I'll keep what you said about full session failover in mind as I design

Re: Session Persistence (Database)

2011-06-05 Thread Mike Schrag
> java.io.NotSerializableException: er.extensions.eof.ERXEC$2 to more directly answer this question, whatever the second inner class inside ERXEC is is the thing that's bitching here ... probably easier to just jad ERXEC$2 to see what it is than to try to determine it with source. so if you ARE

Re: Session Persistence (Database)

2011-06-05 Thread Mike Schrag
i would really recommend not trying to serialize a session into the database directly ... there are a lot of aspects of this which will be a total nightmare (in-process transactions, stateful pages, session persistence frequency, etc). scalability, in general, is a really complex topic, and it j

hash or short keys?

2011-06-05 Thread Jesse Tayler
Wonder-folk -- I thought I saw somewhere some methods to do things like short hash keys like tiny url or other ways to provide a unique key that's short/readable? My old method was to use a long hex by md5 or something which works, but is very long and ugly so I wanted a more modern way. Sugg

Session Persistence (Database)

2011-06-05 Thread Kevin Hinkson
Hi all, I'm attempting to implement database session persistence and I am running into some problems. Questions: 1. My Session cannot be serialized. I'm using the old WXCodecUtilities.archivedDataFromObject which seems to work fine. A stack trace shows ERXEC as the culprit? ERXEC is said to imp

Keeping The ERXEnterpriseObjectCache

2011-06-05 Thread Kevin Hinkson
Hi all, I've just started using ERXEnterpriseObjectCache to hang onto some small lists from the database. I've been throwing these lists in static (EO) class variables. I've baked a few functions into my entity base class templates for auto caching lists so I figured I should ask around about th

Re: When Is Validation Triggered

2011-06-05 Thread Kieran Kelleher
NaviCat? - I don't use a DB GUI app, but IIRC, NaviCat is for MySQL? If so, you can just use MySQL ENUM type to constrain a field to specific set of values. Definition: ENUM ('RED', 'YELLOW', 'BLUE') Field size is only 1 byte (when 255 or less enum values in the list) EOModel Jav