OK, looks like the changes I need to make are to:
org.jboss.wsf.common.management.AbstractServerConfig
ie:
public File getServerDataDir()
| {
| try
| {
| ObjectName oname =
ObjectNameFactory.create("jboss.system:type=ServerConfig");
| File dir = (File)getMbeanServer().getAttribute(oname,
"ServerDataDir");
| return dir;
| }
| catch (JMException e)
| {
| return null;
| }
| }
...where the ObjectNames and return types need to match the new bootstrap SPI.
Would you mind creating a new branch for this project for me?
S,
ALR
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231758#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...