2 Replies Latest reply on Aug 30, 2004 11:29 AM by khem

    JBoss administration console not available for clients

    khem

      Hi all,

      When I make a web app, I make it available to an adress (e.g. : 123.123.123.123:8080/webapp/). But when the client types only 123.123.123.123:8080/, he can access the welcome page of jboss and therefore, he can access all the adminitration page!

      Is there a way to configure jboss so I always can access the admin pages AND the clients can't?

      thx in advance...

        • 1. Re: JBoss administration console not available for clients
          raja05

          Check out the web.xml in the jboss deploy directory ..

          <JBOSS_HOME>/server/default/deploy/jbossweb-tomcat.sar
          In the web.xml, there would be a entry called listings for DefaultServlet. The default value for that is true which means display all the listings as in ur case. Turn that value to false and you would be able to avoid it from seeing by your clients.

          • 2. Re: JBoss administration console not available for clients
            khem

            Hi raja and thx for your quick answer,

            I made as you said but it doesn't work : clients can access jboss admin page by typing : http://myipadress:8080/ ...
            I think the entry "listings" is usufull when there s no welcome file but at the root, there is a welcom file (which display the link to access the amdin pages).


            Have you any other idea?