On 12/4/06, Jeff Vroom <[EMAIL PROTECTED]> wrote:
Comments inline: 1) Without using Peter's FDS Plugin, what is the easiest way to deploy a FDS-enabled project as http://localhost:8080/ or http://localhost:8080/ProjectName/? Every example I've been able to find has it coming out of the flex.war as http://localhost:8080/Flex/ProjectName/ When you are deploying a web application (.war), you specify the context-root in app-server specific configuration. Most of them have a way to specify a single "default web application", i.e. with a context-root of "/". For tomcat, this is in the server.xml file I think.
Yes, this is in the server.xml file. You specify a host element and make the appBase attribute say "webapps/yourWebappName" The problem is that you cant here say webapps/youbWebappName/Yourflexappname. This means that you need to put the welcome index.html file at the root of the webapp, which flexbuilder will not automatically do. Regards Hank

