The problem is it definitely has one in the Rate class (my Entity
class, all annotations set and checked everywhere)
Defined as :

@SuppressWarnings("unchecked")
        public static List<Rate> findRates(int first, int max){
        EntityManager em = EMF.get().createEntityManager();
        try{
                Query query = em.createQuery("select o from Rate o");
                query.setFirstResult(first);
                query.setMaxResults(max);
                List<Rate> list = query.getResultList();
                list.size();
                return list;
        }

        finally {
        em.close();
    }
        }

On 29 Aug., 20:53, Thomas Broyer <[email protected]> wrote:
> On Monday, August 29, 2011 7:42:08 PM UTC+2, Nik wrote:
>
> > Console says :
>
> > [ERROR] Could not find matching method in
> > synlogistics.ratesexchange.server.domain.Rate.
> > Possible matches:
> >   synlogistics.ratesexchange.server.domain.Rate
> > findRate(java.lang.Long )
>
> Your method findRates in your RatesRequest request context has no
> corresponding findRates method in the Rate service class on the server.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" 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-web-toolkit?hl=en.

Reply via email to