Description of problem: The environment and cache fields are not shown on the JBoss ON page when viewing the configuration of /subsystem=naming/binding entries Version-Release number of selected component (if applicable): JBoss ON 3.3.8 How reproducible: Every time Steps to Reproduce: 1. Add object-factory JNDI to the EAP 6 and EAP 7. For instance something like this is added in the standalone.xml file: ********************************* <subsystem xmlns="urn:jboss:domain:naming:2.0"> <bindings> <object-factory name="java:global/MongoClient" module="com.mongodb.jndi" class="com.mongodb.jndi.MongoClientJNDIFactory"> <environment> <property name="mongoClientURI" value="mongodb://username:password:27017,username:password:27017"/> </environment> </object-factory> </bindings> <remote-naming/> </subsystem> ********************************* Full instructions for this can be found in: https://stackoverflow.com/questions/25311699/custom-jndi-object-factory-in-wildfly-8-for-cdi 2. Start both EAP 6 and EAP 7; 3. Discover newly started EAP 6 and EAP 7 and add them to the inventory; 4. Navigate to JBoss ON UI -> EAP 6 resource -> Subsystem -> naming -> Bindings -> java:global/MongoClient resource -> Configuration tab -> and check what's visible there. Actual results: Visible fields are: Binding Type, Class, Lookup, Module, Type and Value. However, Environment and Cache fields are not there. Expected results: Everything should be visible - including Environment and Cache fields. Additional info: