[JBoss JIRA] Created: (RF-1366) NotSerializableException while loading persisted sessions
by Andrey Rodionov (JIRA)
NotSerializableException while loading persisted sessions
---------------------------------------------------------
Key: RF-1366
URL: http://jira.jboss.com/jira/browse/RF-1366
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.0
Environment: Tomcat 5.5
RichFaces 3.1.0
MyFaces 1.1.5
Reporter: Andrey Rodionov
Get exception while startup Tomcat with early deployed Richfaces application. Don't know nothing about others RichFaces components, but HtmlPanel - Not Serializable.
16.11.2007 17:38:33 org.apache.catalina.session.StandardManager doLoad
SEVERE: IOException while loading persisted sessions: java.io.WriteAbortedExcept
ion: writing aborted; java.io.NotSerializableException: org.richfaces.component.
html.HtmlPanel
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException
: org.richfaces.component.html.HtmlPanel
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1308)
at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:19
17)
at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1841)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1
718)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1304)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:349)
at org.apache.catalina.session.StandardSession.readObject(StandardSessio
n.java:1371)
at org.apache.catalina.session.StandardSession.readObjectData(StandardSe
ssion.java:903)
at org.apache.catalina.session.StandardManager.doLoad(StandardManager.ja
va:393)
at org.apache.catalina.session.StandardManager.load(StandardManager.java
:320)
at org.apache.catalina.session.StandardManager.start(StandardManager.jav
a:634)
at org.apache.catalina.core.ContainerBase.setManager(ContainerBase.java:
431)
at org.apache.catalina.startup.ContextConfig.managerConfig(ContextConfig
.java:391)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years
[JBoss JIRA] Created: (RF-993) drag-n-drop on the tree: Problem with Netscape 7.1
by Sergey Smirnov (JIRA)
drag-n-drop on the tree: Problem with Netscape 7.1
--------------------------------------------------
Key: RF-993
URL: http://jira.jboss.com/jira/browse/RF-993
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.0
Reporter: Sergey Smirnov
Assigned To: Maksim Kaszynski
Fix For: 3.2.0
Quote: "
I solved the problem! The following lines in observeEvents of tree-item.js are meant to optimize the code in IE, but prevent Netscape 7 & 8 from working correctly:
observeEvents: function(element) {
var cells = element.rows[0].cells;
//seeking by id seems to be miserably slow in IE than by index
var eIcon = cells[this.elementID.icon];
var eText = cells[this.elementID.text];
Somehow the cells do NOT have an id, so you cant access them!!!
I replaced it with :
observeEvents: function(element) {
var eIcon = $(this.elementID.icon);
var eText = $(this.elementID.text);
"
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years