Issue Details (XML | Word | Printable)

Key: SHALE-365
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Trivial Trivial
Assignee: Unassigned
Reporter: Ingo Dueppe
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Shale

faces-config.xml is not valid.

Created: 19/Dec/06 09:46 PM   Updated: 23/Jan/07 04:40 PM
Component/s: Remoting
Affects Version/s: 1.0.4-SNAPSHOT
Fix Version/s: 1.0.4

Flags: Patch


 Description  « Hide
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>


 All   Comments   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Repository Revision Date User Message
ASF #488824 Tue Dec 19 21:57:26 UTC 2006 craigmcc D'oh ... forgot the managed bean scope on the in-progress implementation
of standalone logging adapter for Shale Remoting. It is designed to be
in application scope. Thanks to Ingo Dueppe for pointing this out (SHALE-365).
Files Changed
MODIFY /shale/framework/trunk/shale-remoting/src/main/resources/META-INF/faces-config.xml