[
http://jira.jboss.com/jira/browse/JBAS-3744?page=all ]
Dimitris Andreadis closed JBAS-3744.
------------------------------------
Fix Version/s: JBossAS-4.0.5.GA
JBossAS-5.0.0.Beta
Resolution: Done
Actually, the problem was the webserver-xmbean.xml descriptor was out-of-sync with the
MBean interface.
- <attribute access="read-write" getMethod="getUseJK"
setMethod="setUseJK">
+ <attribute access="read-write" getMethod="isUseJK"
+ setMethod="setUseJK">
UseJK is not displayed correctly in jmx-console (for case 11730).
-----------------------------------------------------------------
Key: JBAS-3744
URL:
http://jira.jboss.com/jira/browse/JBAS-3744
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Web (Tomcat) service
Affects Versions: JBossAS-4.0.4.GA
Environment: When setting UseJK to true in conf it is always displayed as false
in jmx-console.
Reporter: Jean-Frederic Clere
Assigned To: Dimitris Andreadis
Fix For: JBossAS-4.0.5.GA, JBossAS-5.0.0.Beta
Attachments: patch.txt
Tomcat5.java needs the following patch:
Index: tomcat/src/main/org/jboss/web/tomcat/tc5/Tomcat5.java
===================================================================
--- tomcat/src/main/org/jboss/web/tomcat/tc5/Tomcat5.java (revision 57281)+++
tomcat/src/main/org/jboss/web/tomcat/tc5/Tomcat5.java (working copy)
@@ -302,6 +302,10 @@
return useJK;
}
+ public boolean getUseJK() {
+ return useJK;
+ }
+
public void setUseJK(boolean useJK)
{
this.useJK = useJK;
--
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