Advertisement
Guest User

Untitled

a guest
Apr 4th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <mbean code="org.jboss.web.WebService"
  2. name="jboss:service=WebService">
  3. <!-- The Bind address and Port -->
  4. <attribute name="BindAddress">${jboss.bind.address}</attribute>
  5. <attribute name="Port">8083</attribute>
  6. <!-- The address to use for the host portion of the RMI codebase URL -->
  7. <attribute name="Host">${java.rmi.server.hostname}</attribute>
  8. <!-- Should non-EJB .class files be downloadable -->
  9. <attribute name="DownloadServerClasses">true</attribute>
  10. <!-- Should resources other than .class files be downloadable. Both
  11. DownloadServerClasses and DownloadResources must be true for resources
  12. to be downloadable. This is false by default because its generally a
  13. bad idea as server configuration files that container security
  14. information can be accessed.
  15. -->
  16. <attribute name="DownloadResources">false</attribute>
  17. <!-- Use the default thread pool for dynamic class loading -->
  18. <depends optional-attribute-name="ThreadPool"
  19. proxy-type="attribute">jboss.system:service=ThreadPool
  20. </depends>
  21. </mbean>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement