| From | Sent On | Attachments |
|---|---|---|
| Ingo Dueppe (JIRA) | Dec 19, 2006 1:48 pm | |
| Craig McClanahan (JIRA) | Dec 19, 2006 1:59 pm |
| Subject: | [jira] Resolved: (SHALE-365) faces-config.xml is not valid. | |
|---|---|---|
| From: | Craig McClanahan (JIRA) (ji...@apache.org) | |
| Date: | Dec 19, 2006 1:59:34 pm | |
| List: | org.apache.shale.issues | |
[ http://issues.apache.org/struts/browse/SHALE-365?page=all ]
Craig McClanahan resolved SHALE-365. ------------------------------------
Fix Version/s: 1.0.4-SNAPSHOT Resolution: Fixed
You're absolutely correct that I broke this, and that the intended scope is
"application". I just checked in a fix, which will be in the 20061220 nightly
build.
faces-config.xml is not valid. ------------------------------
Key: SHALE-365 URL: http://issues.apache.org/struts/browse/SHALE-365 Project: Shale Issue Type: Bug Components: Remoting Affects Versions: 1.0.4-SNAPSHOT Reporter: Ingo Dueppe Priority: Trivial Fix For: 1.0.4-SNAPSHOT
During the last change of faces-config the managed-bean-scope definition has
been forgotten. So currently the faces-config.xml inside shale-remoting is not
valid.
I am not sure what is intended with the LOGGER-Bean, but I assumed that it
should be application-scope.
Regards
Ingo
Index: .
===================================================================
--- . (revision 488706)
+++ . (working copy)
@@ -43,9 +43,8 @@
<managed-bean>
<!-- Default logging adapter implementation -->
<managed-bean-name>org.apache.shale.remoting.LOGGER</managed-bean-name>
- <managed-bean-class>
- org.apache.shale.remoting.logger.DefaultLogger
- </managed-bean-class>
+
<managed-bean-class>org.apache.shale.remoting.logger.DefaultLogger</managed-bean-class>
+ <managed-bean-scope>application</managed-bean-scope>
</managed-bean>
</faces-config>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/struts/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira





