glassfish_at_javadesktop.org wrote:
> Hello,
>
> Is GlassFish compatible with the JSF Sun RI 1.1 Implementation ?
>
> I do have JSF components (from a Software editor) that run only with this implementation.
>
> Hep would be very appreciated.
>
With the current releases of GlassFish, you can do the following:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.4//EN" "
http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd">
<sun-web-app>
<class-loader delegate="false"/>
<property name="useMyFaces" value="true"/>
</sun-web-app>
You must also include the JSF implementation you wish to use with your
web application.
Once v2.1/v3 is released, you should use:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.4//EN" "
http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd">
<sun-web-app>
<class-loader delegate="false"/>
<property name="useBundledJsf" value="true"/>
</sun-web-app>
> Jean-Paul
> [Message sent by forum member 'jepjavanet' (jepjavanet)]
>
> http://forums.java.net/jive/thread.jspa?messageID=316896
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>
>