[jboss-user] [JBoss jBPM] - Re: OutOfMemoryError in JBPM3.2.1

2007-08-13 Thread stana
OK. I just added the issue to JIRA ^_^

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4073653#4073653

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073653
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: How to define customer bean in jbpm 3.2.1?

2007-08-13 Thread stana
I made a stupid mistak by puting tags managed-bean in the scope of ! 
Now, it is working well. 
 


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4073801#4073801

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073801
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: OutOfMemoryError in JBPM3.2.1

2007-08-12 Thread stana
kukeltje wrote : By looking in the jsf component for dataform, find out what 
causes the OOME and creating  a patch
Well.
I looked into the source code of jsf component, and found it is bug of 
jbpm3.2.1 !

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4073366#4073366

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073366
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - How to define customer bean in jbpm 3.2.1?

2007-08-12 Thread stana
I just upgraded from jbpm 3.2. GA to jbpm 3.2.1, and found unlike jpbm3.2.GA 
there is no managed-bean tag in \WEB-INF\faces-config.xml file. After adding 
my managed-ben in to \WEB-INF\faces-config.xml and runing my web application 
that woking well in jbpm3.2.GA, I got the error Target Unreachable, identifier 
MyUserBean resolved to null. So I think it maybe different to define cusomer 
bean in jbpm 3.2.1. Is there any suggestion?
Thanks in advanbce.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4073367#4073367

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073367
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: OutOfMemoryError in JBPM3.2.1

2007-08-12 Thread stana
Staub,
  Thanks for your advice. For my poor English (it is not my native language), 
it is impossible for me to describe the issue clearly. But it is definitely a 
bug. I hope this topic could attract attention and somebody can do the work you 
said.

-Stana

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4073385#4073385

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073385
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - OutOfMemoryError in JBPM3.2.1

2007-08-11 Thread stana
The following taskform code works in JBPM3.2.GA. 
But when running in JBPM 3.2.1, it causes OutOfMemoryError. By testing, I found 
that if I change  jbpm:dataform columns=2 to  jbpm:dataform, it will work 
well in both JBPM3.2.GA and JBPM3.2.1.  
How can this error be fixed?



  | !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; 
  | 
  | !-- the DOCTYPE means we are required to use html for a root element --
  | html xmlns=http://www.w3.org/1999/xhtml;
  |   xmlns:ui=http://java.sun.com/jsf/facelets;
  |   xmlns:c=http://java.sun.com/jstl/core;
  |   xmlns:h=http://java.sun.com/jsf/html;
  |   xmlns:f=http://java.sun.com/jsf/core;
  |   xmlns:tf=http://jbpm.org/jsf/tf;
  |   xmlns:jbpm=http://jbpm.org/jsf;
  | 
  |   ui:component
  | 
  | jbpm:dataform columns=2
  | 
  |   f:facet name=header
  | h:outputText value=#{taskName}/
  |   /f:facet
  | 
  |   !-- TASKFORM ROWS --
  |   jbpm:datacell
  | f:facet name=header
  | h:outputText value=Sex/
  | /f:facet
  | h:selectOneRadio id=StudentSex value=#{var['StudentSex']} 
  | f:selectItem itemLabel=Male itemValue=Male/
  | f:selectItem itemLabel=Female itemValue=Female/ 
  | /h:selectOneRadio  
  |   /jbpm:datacell
  | 
  |  jbpm:datacell
  | f:facet name=header
  | h:outputText value=HasAS/
  | /f:facet
  | h:selectOneRadio id=HasAS value=#{var['HasAS']} 
  | f:selectItem itemLabel=Yes itemValue=Yes/
  | f:selectItem itemLabel=No itemValue=No/ 
  | /h:selectOneRadio
  |   /jbpm:datacell
  | 
  |   jbpm:datacell
  | f:facet name=header
  |   h:outputText value=Actions/
  | /f:facet
  | !-- TASKFORM BUTTONS --
  | tf:saveButton value=Save/
  | tf:cancelButton value=Cancel/
  | tf:transitionButton value=Save and Close/
  |   /jbpm:datacell
  | 
  | /jbpm:dataform
  | 
  |   /ui:component
  | 
  | /html
  | 
  | 



anonymous wrote : 
  | exception 
  | javax.servlet.ServletException: Servlet execution threw an exception
  | 
org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:147)
  | 
  | root cause 
  | java.lang.OutOfMemoryError: Java heap space
  | com.sun.facelets.util.FastWriter.overflow(FastWriter.java:50)
  | com.sun.facelets.util.FastWriter.write(FastWriter.java:57)
  | com.sun.facelets.util.FastWriter.write(FastWriter.java:77)
  | com.sun.facelets.StateWriter.write(StateWriter.java:116)
  | 
com.sun.faces.renderkit.html_basic.HtmlResponseWriter.startElement(HtmlResponseWriter.java:467)
  | 
org.jboss.gravel.common.renderer.RendererBase$ElementImpl.(RendererBase.java:246)
  | 
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4073291#4073291

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073291
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user