Bruce Sheng

Greenhorn
+ Follow
since Feb 13, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Bruce Sheng

I got the problem in weblogic7.0 before but I didn't work out the reason. I recompiled all sources including client part,redeployed the application and the problem disappeard. The version difference of the client side class(stub) and server side class (skelton) may be the cause.
Can you post the correct local home definition and it's deployment descriptor?
Want to work as a programmer in China?

add me mxsheng@hotmail.com to your msn.
19 years ago
cd C:\jboss3.2.2\server\default\deploy\jmx-console.war\WEB-INF
1. Uncomment
<security-domain>java:/jaas/jmx-console</security-domain>
in jboss-web.xml
2. Uncomment
<security-constraint>
<web-resource-collection>
<web-resource-name>HtmlAdaptor</web-resource-name>
<description>An example security config that only allows users with the
role JBossAdmin to access the HTML JMX console web application
</description>
<url-pattern>/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>JBossAdmin</role-name>
</auth-constraint>
</security-constraint>
cd C:\jboss3.2.2\server\default\deploy\jmx-console.war\WEB-INF\classes\
3. edit users.properties file.
Original content is "admin=admin". You can edit content your user and password, such as "fooUser=barPasswd1%3".
4. Open http://localhost:8080/jmx-console
input fooUser/barPasswd1%3 to enter .
19 years ago