
| Key: |
SHALE-365
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Trivial
|
| Assignee: |
Unassigned
|
| Reporter: |
Ingo Dueppe
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
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>
|
|
Description
|
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>
|
Show » |
|