Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Jetty WTP Plugin/Jetty WTP External WebApp"

(New page: {{Jetty}} == How to Use External Web Application == To read this section, please modify port with 8080. Sometimes it can be usefull to use a WEB Application which was not created with D...)
 
m
Line 1: Line 1:
 
{{Jetty}}
 
{{Jetty}}
  
== How to Use External Web Application ==
+
== Using an External Web Application ==
  
To read this section, please modify port with 8080.
 
  
Sometimes it can be usefull to use a WEB Application which was not created with Dynamic WEB Project (ex : you create your WEB Application with your ANT). You can start this external WEB Application.
+
Sometimes it can be useful to use a web application that you created by other means than Dynamic WEB Project (for example, by using Ant).  
  
For instance Jetty7 distribution provides a test.war which show you the features of Jetty 7 (WebSocket..). Here we will use this war (without creating Dynamlc Web Project) to start it.  
+
For instance, the Jetty7 distribution provides a <tt>test.war</tt> which shows you the features of Jetty 7 (WebSocket..). Here we use this WAR without creating a Dynamlc Web Project to start it.  
  
Copy test.war from D:\Servers\jetty-distribution-7.1.6.v20100715\webapps
+
<ol>
 +
<li>Copy <tt>test.war</tt> from D:\Servers\jetty-distribution-7.1.6.v20100715\webapps
 +
</li?
  
[[Image:Jetty-wtp-external1.jpg]]
 
  
and unzip it in the D:\tmp :
+
<li>[[Image:Jetty-wtp-external1.jpg]]
 +
 
 +
<li>unzip <tt>test.war</tt> in D:\tmp :
 +
</li>
 +
 
  
  
Line 19: Line 23:
  
  
Open the launch, go at the Modules tab and click on « Add External Web Module » :
+
<li>To open the launch, in the Modules tab, click '''Add External Web Module'''.
 +
</li>
 +
 
  
  

Revision as of 17:11, 18 November 2010



Using an External Web Application

Sometimes it can be useful to use a web application that you created by other means than Dynamic WEB Project (for example, by using Ant).

For instance, the Jetty7 distribution provides a test.war which shows you the features of Jetty 7 (WebSocket..). Here we use this WAR without creating a Dynamlc Web Project to start it.

  1. Copy test.war from D:\Servers\jetty-distribution-7.1.6.v20100715\webapps </li?
  2. Jetty-wtp-external1.jpg
  3. unzip test.war in D:\tmp :

  4. Jetty-wtp-external2.jpg


  5. To open the launch, in the Modules tab, click Add External Web Module.

  6. Jetty-wtp-external3.jpg


    Fill the dialog like this :


    Jetty-wtp-external4.jpg

    • document base : D:\tmp\test
    • Path : /test (it's the context path)

    Click on OK button, test module must appear :

    Jetty-wtp-external5.jpg


    If you go at http://localhost:8080/test/ This page show you Jetty home test war :

    Jetty-wtp-external6.jpg

    You can notice that http://localhost:8080/mywebapp/ is available too. You can add/remove as you wish any Dynamic Web Project or External WEB Application.

Back to the top