Hi
this does not help... same behavior...

i got my jsf jars from here :
http://javadocs.wordpress.com/2009/10/17/mojarra-jsf-2-0-rc2-and-google-app-engine-sdk-1-2-6/
and followed the setting of web.xml from here
https://sites.google.com/a/wildstartech.com/adventures-in-java/Java-Platform-Enterprise-Edition/JavaServer-Faces/sun-javaserver-faces-reference-implementation/configuring-jsf-20-to-run-on-the-google-appengine

maybe you used different sources? if you do please let me know, also
maybe you can post your web.xml ? might be i missed something...

any other ideas are welcomed.

Thanks ahead

Daniel

On Sep 23, 3:24 pm, Jaziel Leandro <[email protected]> wrote:
> I have the same error few times ago.
> Try this, make you Bean implements Serializable.
>
> 2010/9/23 Daniel <[email protected]>
>
> > I'm want to use the <f:ajax tag of the JSF 2 on app engine... but
> > without any luck
>
> > I tried some very simple examples taken from
>
> >http://mkblog.exadel.com/2010/04/learning-jsf-2-ajax-in-jsf-using-faj...
>
> > all of them works perfectly on local Tomcat (not GAE)
>
> > But when i try the same on GAE, nothing works, im not getting any
> > errors.. its just do nothing...
> > Here the simplest example
>
> > On each char type I'm supposed to sea the same char typed beneath and
> > beneath it a counter of chars (text length) - again.. this works
> > perfectly on tomcat server... (not GAE)
>
> > Any ideas what am i missing?
>
> > <h:form>
> >   <h:panelGrid>
> >      <h:inputText value="#{bean.text}" >
> >         <f:ajax event="keyup" render="text count"
> > listener="#{bean.countListener}"/>
> >      </h:inputText>
> >      <h:outputText id="text" value="#{bean.text}" />
> >      <h:outputText id="count" value="#{bean.count}" />
> >   </h:panelGrid>
> > </h:form>
>
> > java code:
> > package general;
>
> > import javax.faces.bean.ManagedBean;
> > import javax.faces.event.AjaxBehaviorEvent;
>
> > @ManagedBean(name = "bean")
> > public class Bean {
> >   private String text; // getter and setter
> >   private Integer count;
>
> >    public void countListener(AjaxBehaviorEvent event) {
> >           count = text.length();
> >        }
>
> >        public String getText() {
> >                return text;
> >        }
>
> >        public void setText(String text) {
> >                this.text = text;
> >        }
>
> >        public Integer getCount() {
> >                return count;
> >        }
>
> >        public void setCount(Integer count) {
> >                this.count = count;
> >        }
>
> > }
>
> > Thanks ahead.
>
> > Daniel
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google App Engine for Java" group.
> > To post to this group, send email to
> > [email protected].
> > To unsubscribe from this group, send email to
> > [email protected]<google-appengine-java%[email protected]>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-appengine-java?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to