User: user57  
  Date: 02/03/06 23:41:20

  Modified:    src/docs/demo/netboot index.jsp
  Added:       src/docs/demo/netboot advanced.jsp
  Log:
   o Split off advanced examples so they can have even more detail with out
     complicating the basics
  
  Revision  Changes    Path
  1.3       +6 -49     newsite/src/docs/demo/netboot/index.jsp
  
  Index: index.jsp
  ===================================================================
  RCS file: /cvsroot/jboss/newsite/src/docs/demo/netboot/index.jsp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.jsp 7 Mar 2002 07:15:11 -0000       1.2
  +++ index.jsp 7 Mar 2002 07:41:20 -0000       1.3
  @@ -1,5 +1,5 @@
   <jsp:include page="/head.jsp" flush="true" />
  -<!-- $Id: index.jsp,v 1.2 2002/03/07 07:15:11 user57 Exp $ -->
  +<!-- $Id: index.jsp,v 1.3 2002/03/07 07:41:20 user57 Exp $ -->
   <jsp:include page="/slogan.jsp" flush="true" >
      <jsp:param name="SLOGAN" value="Demo > NetBoot"/>
   </jsp:include>
  @@ -26,7 +26,8 @@
      vertically or both to preserve the layout of this page.  Truncation
      is marked by <tt>...</tt>.
   
  -<br clear="all">
  +<p>This page only covers the most basic <em>NetBoot</em> usage.  For
  +   more examples, have a look at <a href="advanced.jsp">Advanced NetBoot</a>.
   
   <!-- ==================================================================== -->
   
  @@ -38,7 +39,6 @@
      <li><a href="#Requirements">Requirements</a>
      <li><a href="#Getting_the_Binary">Getting the Binary</a>
      <li><a href="#Starting_the_Server">Starting the Server</a>
  -   <li><a href="#Other_Configurations">Other Configurations</a>
      <li><a href="#What_Next">What Next?</a>
   </ul>
   
  @@ -167,57 +167,14 @@
   
   <!-- ==================================================================== -->
   
  -<h2><a name="Other_Configurations"></a>Other Configurations</h2>
  -
  -<p>The previous example uses the <em>default</em> configuration, which we have
  -   trimmed to contain only the basic components required for server to function.
  -   There is nothing stopping you from deploying more advanced configurations,
  -   such as a full J2EE container, full blown web application or really any other
  -   configuration you can think of!
  -
  -<p>To help show how easy it is to use <em>NetBoot</em> for these advanced 
  -   uses, we have setup a few more configurations which provide some real world
  -   functionality.
  -
  -<p>These configurations are meant to show you the power and simplicity of 
  -   <em>NetBoot</em> and are not and should not be used for production systems.
  -
  -<p>These advanced configurations require more support resources that the 
  -   simple example from above.  Depending on how fast your network connection
  -   is it may take longer for the server to start fully.
  -
  -<h3>A Full J2EE Container
  -
  -<p>This example configuration provides a FULL J2EE container, which you can
  -   even deploy your Enterprise Java Beans into!
  -
  -<pre class="command">
  -./bin/run.sh --netboot http://jboss.sf.net/demo/netboot --config j2ee
  -</pre>
  -
  -<h3>Java Pet Store Example
  +<h2><a name="What_Next"></a>What Next?</h2>
   
  -<p>This configuration provides the required components for Sun's Java Pet
  -   Store demo running inside of JBoss!
  -
  -<pre class="command">
  -./bin/run.sh --netboot http://jboss.sf.net/demo/netboot --config petstore
  -</pre>
  +<p>To see how powerful JBoss <em>NetBoot</em> is, check out some of the
  +   more advanced examples <a herf="advanced.jsp">here</a>.
   
   <p>[<a href="#Contents">Contents</a>]
   
   <!-- ==================================================================== -->
  -
  -<h2><a name="What_Next"></a>What Next?</h2>
  -
  -<p>You will want to take into consideration what your deployment needs
  -   are, what your environment restrictions are and how much effort you are
  -   willing to invest in configuration management.
  -
  -<p>If all that confused you then why not ask the experts at
  -   <a href="/jbossgroup/services.jsp">JBoss Group</a> for help!
  -
  -<p>[<a href="#Contents">Contents</a>]
   
   <br clear="all"/>
   
  
  
  
  1.1                  newsite/src/docs/demo/netboot/advanced.jsp
  
  Index: advanced.jsp
  ===================================================================
  <jsp:include page="/head.jsp" flush="true" />
  <!-- $Id: advanced.jsp,v 1.1 2002/03/07 07:41:20 user57 Exp $ -->
  <jsp:include page="/slogan.jsp" flush="true" >
     <jsp:param name="SLOGAN" value="Demo > Advanced NetBoot"/>
  </jsp:include>
  
  <!-- ==================================================================== -->
  
  <jsp:include page="/common/picateam.jsp" flush="true"/>
  
  <p>This page covers some more advanced examples of using <em>NetBoot</em>.
  
  <p>The previous example uses the <em>default</em> configuration, which we have
     trimmed to contain only the basic components required for server to function.
     There is nothing stopping you from deploying more advanced configurations,
     such as a full J2EE container, full blown web application or really any other
     configuration you can think of!
  
  <p>To help show how easy it is to use <em>NetBoot</em> for these advanced 
     uses, we have setup a few more configurations which provide some real world
     functionality.
  
  <p>These configurations are meant to show you the power and simplicity of 
     <em>NetBoot</em> and are not and should not be used for production systems.
  
  <p>These advanced configurations require more support resources that the 
     simple example from above.  Depending on how fast your network connection
     is it may take longer for the server to start fully.
  
  <br clear="all">
  
  <!-- ==================================================================== -->
  
  <h2><a name="Contents"></a>Contents</h2>
  
  <p>
  <ul>
     <li><a href="#Full_J2EE">A Full J2EE Container</a>
     <li><a href="#Pet_Store">Pet Store</a>
     <li><a href="#What_Next">What Next?</a>
  </ul>
  
  <!-- ==================================================================== -->
  
  <h2><a name="Full_J2EE"></a>A Full J2EE Container</h2>
  
  <p>This example configuration provides a FULL J2EE container, which you can
     even deploy your Enterprise Java Beans into!
  
  <pre class="command">
  ./bin/run.sh --netboot http://jboss.sf.net/demo/netboot --config j2ee
  </pre>
  
  <p>[<a href="#Contents">Contents</a>]
  
  <!-- ==================================================================== -->
  
  <h2><a name="Pet_Store"></a>Java Pet Store</h2>
  
  <p>This configuration provides the required components for Sun's Java Pet
     Store demo running inside of JBoss!
  
  <pre class="command">
  ./bin/run.sh --netboot http://jboss.sf.net/demo/netboot --config petstore
  </pre>
  
  <p>[<a href="#Contents">Contents</a>]
  
  <!-- ==================================================================== -->
  
  <h2><a name="What_Next"></a>What Next?</h2>
  
  <p>You will want to take into consideration what your deployment needs
     are, what your environment restrictions are and how much effort you are
     willing to invest in configuration management.
  
  <p>If all that confused you then why not ask the experts at
     <a href="/jbossgroup/services.jsp">JBoss Group</a> for help!
  
  <p>[<a href="#Contents">Contents</a>]
  
  <!-- ==================================================================== -->
  
  <br clear="all"/>
  
  <jsp:include page="/navigation.jsp" flush="true" />
  
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to