I have a working Mule application that I want to configure Jetty to respond to http requests. The following configuration:
<jetty:endpoint address="http://localhost:8080"
name="jettyEndpoint"
host="localhost"
port="8080" path="/"
synchronous="true" />
<service name="jettyUMO">
<inbound>
<jetty:inbound-endpoint ref="jettyEndpoint" />
</inbound>
<test:component appendString="Received" />
</service>
... works when I launch the application and select the browser for http: // localhost: 8080 - everything that is displayed is "Received" ", for the test: component.
What I want to do is update this so that instead of seeing "Received", I want to go to where I defined the index.html file. My assumption is that I need to modify the test: component for outgoing endpoint - is this correct? Where would I indicate the path (relative or absolute)?
source
share