I am trying to install Flex J2EE module but when I try to access mxml
from my browser, but I get following error:
1 Error found.
Error /hello.mxml:1
The markup in the document preceding the root element must be well-formed.
1: <%@ taglib uri="FlexTagLib" prefix="mm" %>
2: <mm:mxml>
Here is my mxml file:
<%@ taglib uri="FlexTagLib" prefix="mm" %>
<mm:mxml>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*">
<mx:Text label="Hello World">
</mx:Application>
</mm:mxml>
It seems like server is not recognizing ad processing jsp tags.
If I understand correctly, these should be processed before sending
content to FlexMxmlServlet, but this does not seems to be the case.
I am using Tomcat 6.0.1.8 and all I did is drop webtier.war to webapps
directory on tomcat and then add mxml file to war.
Any help appreciated!
Dan