Does IDEA recognize the new style of JSP taglib declaration by declaring it in an 
xmlns attribute as in the following?:

<pre>
web.xml
.....
<taglib>
    <taglib-uri>/struts-bean</taglib-uri>
    <taglib-location>/META-INF/tlds/struts-bean.tld</taglib-location>
</taglib>

---------------

index.jsp
<jsp:root 
    xmlns:jsp="http://java.sun.com/JSP/Page";
    xmlns:bean="/struts-bean"
    version="1.2">
...
    <bean:define id="myBean" name="myBean"/>
...
</jsp:root>
</pre>

As of right now, I can't get it to recognize that the above format is a perfectly 
legal JSP according to the 1.2 spec.


------------
Rowell Sotto     [EMAIL PROTECTED]

_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to