[Logo] Enterprise Client Community
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Messages posted by: CaptainCasa  XML
Profile for CaptainCasa -> Messages posted by CaptainCasa [5519] Go to Page: Previous  1, 2, 3 ... 346, 347, 348 ... 366, 367, 368 Next 
Author Message
Hi Michael,

yes, a component like this is required - we'll add it short term.

You are 100% right about going to the server each second does not sound 100% healthy...

Björn
Last input I'd like to obtain from you: the previous/next navigation (the one with the oustanding tooltips... should it skip disabled icons?
(I'd rather think so, but...)

Björn
You mean: you want to control per icon "on the left" if it is enabled or not?

Björn
Yes, this error occurs when the reloading of the webapp is always reloading a big chunk of classes (permgen somehow is the memory in which the class code itself is managed): Hibernate, JDBC, ... Realoding is done quite oftenly within the Layout Editor.

First activity: increase the PermGen Size:
Parameter: -XX:MaxPermSize=256m

Example:

Code:
 set JAVA_HOME=
 set JRE_HOME=jre
 set CATALINA_HOME=tomcat
 set JAVA_OPTS=-XX:MaxPermSize=256m
 tomcat/bin/catalina run
 


Second activity: there is a hot deployment concept within CaptainCasa which might be useful for you. It was introduced some weeks ago, because a customer had quite long reload times with his applicaiton.

Result: if the PermGenSize "solves" your problem ("solves" ==> increases the time until OutOfMemory...): fine! If you in general have the problem of long reload times...: contact us back!

Björn
...we'll check... Give us some hours...
Björn
...no problem, we just updated as follows:

Code:
     public static interface IYesNoListener
     {
         public void reactOnYes();
         public void reactOnNo();
     }
     
     public static interface IYesNoCancelListener extends IYesNoListener
     {
         public void reactOnCancel();
     }
 


and...:

Code:
     public void onYes(ActionEvent ae)
     {
         m_yesNoListener.reactOnYes();
         m_modalPopup.close();
         ...
     }
 
     public void onNo(ActionEvent ae)
     {
         m_yesNoListener.reactOnNo();
         m_modalPopup.close();
         ...
     }
 
     public void onCancel(ActionEvent ae)
     {
         if (m_yesNoListener instanceof IYesNoCancelListener)
             ((IYesNoCancelListener)m_yesNoListener).reactOnCancel();
         m_modalPopup.close();
         ...
     }
 


...available "on request"...

Björn
OK, problem is fixed now. Solution available with next update.
Björn
...wait a bit with responding, I think we can work-around this on our side...
Björn
...some interim info: the focus somehow seems to be grabbed by the ACTIVEX component that is started within the logon screen as well. Any chance to postpone the creation of this component, e.g. by creating this on the second screen of the application?

Björn
I do not know jasper too much. I thought jasper is generating PDF...?
Björn
...sounds do-able... (== Yes!)
Björn
Could you please record a client log with infolevel=ALL? Thanks!
Björn
...what do you mean by "works fine in CaptainCasa Enterprise Client, but not in our real application"?

Björn
...the interface is valid for all set-property activities that pass data from the screen to the managed bean processing.

Could you view the example, in the Demp Workplace "General Issues" ==> "General Issues" ==> "Property Change Notification"?

Björn
...yes, makes sense. We'll update the behaviour short term.
Björn
 
Profile for CaptainCasa -> Messages posted by CaptainCasa [5519] Go to Page: Previous  1, 2, 3 ... 346, 347, 348 ... 366, 367, 368 Next 
Go to:   
Powered by JForum 2.1.6 © JForum Team