1 Reply Latest reply on Jul 14, 2006 5:09 AM by hubertg

    default portal question ?

    ericmacau

      Hello,

      How can I change my portal to default?
      And change the jboss portal to "admin" ?
      So that it can show my portal page when calling "http://localhost:8080/portal".

        • 1. Re: default portal question ?
          hubertg

          hi,
          check out
          jboss-portal. sar/conf/data/default-object.xml

          here the default portal is declared:
          important is the empty <parent-ref> and the <portal-name>

          <deployment>
           <parent-ref/>
           <if-exists>keep</if-exists>
           <portal>
           <portal-name>default</portal-name>
           <properties>
           <!--
           | Set the layout for the default portal, see also portal-layouts.xml.
           -->
           <property>
           <name>layout.id</name>
           <value>generic</value>
           </property>
           ...
          


          it did not try by myself, but you could perhaps overwrite the pre-installed "default" portal with you own portal named "default".

          use
          <if-exists>overwrite</if-exists>


          hope, I could help.

          br, h