I don't know any Trindad template for Netbeans. Netbeans has different project 
types. One of them being type "web application". There is wizard when choosing 
this project type which allow to add some functionality like portlet support, 
faces or especially visual web faces development. Visual web faces development 
features a GUI builder for JSF which is using a special component set (I think 
it's called Woodstock). Choosing visual web faces development adds the jars 
mentioned earlier to the classpath.

Peter


-----Ursprüngliche Nachricht-----
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Matthias 
Wessendorf
Gesendet: Mittwoch, 27. August 2008 18:07
An: MyFaces Discussion
Betreff: Re: [Trinidad] Table does not auto-refresh (PPR) when "show details" 
is clicked

I wonder if there is a Trinidad "template" for Netbeans.

-M

On Wed, Aug 27, 2008 at 5:53 PM, Marco Vieira <[EMAIL PROTECTED]> wrote:
> Yes that was it. I decided to restart the project, to have a clean start.
> Mostly jars that were added but Netbeans. Just for the record, I removed
> these jars:
>
> sqlx.jar
> jsfcl.jar
> errorhandler.jar
> appbase.jar
>
> I want to thank everyone for their help and patience. Thank you very much.
>
> Best Regards,
>
> Marco
>
> On Wed, Aug 27, 2008 at 12:42 PM, René van Wijk
> <[EMAIL PROTECTED]> wrote:
>>
>> Just to be sure I also deployed an application using Trinidad (1.1.7) on
>> Tomcat 6 and experienced no problems. It must be noted that no extra
>> libraries where loaded except the essential ones for Tomcat.
>>
>> One problem could be the extra filters you have in your web.xml. Could you
>> clean up your web.xml file so that only the essentials for Trinidad are
>> present, that is
>>
>> <?xml version = '1.0' encoding = 'windows-1252'?>
>> <web-app ...>
>>    <filter>
>>        <filter-name>trinidad</filter-name>
>>
>>  
>> <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
>>    </filter>
>>    <filter-mapping>
>>        <filter-name>trinidad</filter-name>
>>        <servlet-name>Faces Servlet</servlet-name>
>>    </filter-mapping>
>>    <servlet>
>>        <servlet-name>resources</servlet-name>
>>
>>  
>> <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
>>    </servlet>
>>    <servlet-mapping>
>>        <servlet-name>resources</servlet-name>
>>        <url-pattern>/adf/*</url-pattern>
>>    </servlet-mapping>
>>    <servlet>
>>        <servlet-name>Faces Servlet</servlet-name>
>>        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
>>        <load-on-startup>1</load-on-startup>
>>    </servlet>
>>    <servlet-mapping>
>>        <servlet-name>Faces Servlet</servlet-name>
>>        <url-pattern>/faces/*</url-pattern>
>>    </servlet-mapping>
>>    <session-config>
>>        <session-timeout>35</session-timeout>
>>    </session-config>
>> </web-app>
>>
>> Also make sure no extra libraries are put in the classpath of the Tomcat
>> server.
>>
>>        -----Oorspronkelijk bericht-----
>>        Van: Marco Vieira [mailto:[EMAIL PROTECTED]
>>        Verzonden: wo 27-8-2008 0:03
>>        Aan: MyFaces Discussion
>>        CC:
>>        Onderwerp: Re: [Trinidad] Table does not auto-refresh (PPR) when
>> "show details" is clicked
>>
>>
>>
>>
>
>



-- 
Matthias Wessendorf

Need JSF and Web 2.0?
http://code.google.com/p/facesgoodies

further stuff:
blog: http://matthiaswessendorf.wordpress.com/
sessions: http://www.slideshare.net/mwessendorf
mail: matzew-at-apache-dot-org

Reply via email to