I do have an SSL cert installed.
So apparently I guess LCDS 2.6 is a bit different than LCDS 2.5. I
was able to use FireBug and see that when I tried to browse to my
app I was getting 404's because it couldn't find FlexSwfServlet
which was defined in my web.xml (based on LCDS 2.5):
<servlet>
<servlet-name>FlexSwfServlet</servlet-name>
<display-name>SWF Retriever</display-name>
<servlet-class>flex.bootstrap.BootstrapServlet</servlet-
class>
<init-param>
<param-name>servlet.class</param-name>
<param-value>flex.webtier.server.j2ee.SwfServlet</param-
value>
</init-param>
<!-- SwfServlet must be initialized after MxmlServlet -->
<load-on-startup>2</load-on-startup>
</servlet>
Looking at the latest lcds.war in LCDS 2.6 the web.xml only has the
MessageBrokerServlet defined, nothing else:
<servlet>
<servlet-name>MessageBrokerServlet</servlet-name>
<display-name>MessageBrokerServlet</display-name>
<servlet-class>flex.messaging.MessageBrokerServlet</servlet-
class>
<init-param>
<param-name>services.configuration.file</param-name>
<param-value>/WEB-INF/flex/services-config.xml</param-
value>
</init-param>
<init-param>
<param-name>flex.write.path</param-name>
<param-value>/WEB-INF/flex</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
Anyone know if there is information on why 2.6 doesn't explicitly
define the other servlets? I know in LCDS 2.5 there was a JAR in
the lcds.war/WEB-INF/lib named flex-bootstrap which is no longer in
the lcds.war in LCDS 2.6.