[appengine-java] Class not found in Eclipse

2010-10-26 Thread tleroy
Hello everybody,

I use the appengine eclipse plugin,  I have created a 'Web Application
Project' and a 'Simple Java Project' linked to it. When I launch the
Web Application Project, classes from the Simple project are not
found. Where I have to configure the classpath? I tried in the
'.lauch' file but it doesn't work.

Could you help me?

Merci.

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: A Contains Filter with DataStore Low Level API, is it possible?

2010-10-01 Thread tleroy
So I wrote:
  Query query=new Query("page");
  query.addFilter("tags", FilterOperator.EQUAL, "sport");
  query.addFilter("tags", FilterOperator.EQUAL, "video");

and i obtain the query :
SELECT * FROM page WHERE tags = video AND tags = sport

It was too easy : ).

Thank you Ikai Lan.


On 1 oct, 21:10, "Ikai Lan (Google)"  wrote:
> Just use an equality filter - this should work just fine.
>
> Select from Kind where propertyName contains 'propertyValue' is just:
>
> Query q = new Query("Kind");
> query.addFilter("propertyName", FilterOperator.EQUAL, "propertyValue");
>
> --
> Ikai Lan
> Developer Programs Engineer, Google App Engine
> Blogger:http://googleappengine.blogspot.com
> Reddit:http://www.reddit.com/r/appengine
> Twitter:http://twitter.com/app_engine
>
> On Fri, Oct 1, 2010 at 7:54 AM, tleroy  wrote:
> > Bonjour tout le monde,
>
> > I have in my DataStore an entity 'Page' with fields :
> >           name : store in a String
> >           tags : store in a List
>
> > I would like to fetch pages with only some tags, something like that :
> >           Select * from Page where tags contains ['sport','video']
>
> > Is it possible? I think it's possible with JDO but I don't know how to
> > do that with the Low Level API
>
> > Can you help me?
>
> > Thank you.
>
> > --
> > 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
> > google-appengine-j...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-appengine-java+unsubscr...@googlegroups.com
> > .
> > 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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] A Contains Filter with DataStore Low Level API, is it possible?

2010-10-01 Thread tleroy
Bonjour tout le monde,

I have in my DataStore an entity 'Page' with fields :
   name : store in a String
   tags : store in a List

I would like to fetch pages with only some tags, something like that :
   Select * from Page where tags contains ['sport','video']

Is it possible? I think it's possible with JDO but I don't know how to
do that with the Low Level API

Can you help me?

Thank you.

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: How to see the list of my applications?

2010-07-20 Thread tleroy
Hello,
I find the solution, if you use an Google App account you need to
connect to your admin console from and only from :
https://appengine.google.com/a/your-domain.com.
The password to use is your Google App account password and not your
Google Accout password.
I found the solution here : 
http://code.google.com/intl/fr/appengine/docs/theadminconsole.html

I hope that help some people.


On 8 juil, 18:58, tleroy  wrote:
> Thank you for the response Dider,
> but I did it and i'm redirected tohttps://appengine.google.com/start
> where i only see :
>
> Welcome to Google App Engine
>
> Before getting started, you want to learn more about developing and
> deploying applications.
> Learn more about Google App Engine by reading the Getting Started
> Guide, the FAQ, or the Developer's Guide.
>
> I used an email with a domain manage by google app and I 've noticed
> something strange :
> to connect me to the admin console I use the password of my google
> account, it's ok but to deploy my applications I must enter my email
> password ?!
>
> On 5 juil, 05:53, Didier Durand  wrote:
>
> > Hi,
>
> > After your login, put this address on in address bar of your 
> > browserhttps://appengine.google.com/
> > didier
>
> > On Jul 3, 4:43 pm, tleroy  wrote:
>
> > > Hi everybody,
>
> > > maybe it's a basic question but I can't see the list of my
> > > applications.
> > > The only things I see when i log in my gae account is :
>
> > > Welcome to Google App Engine
>
> > > Before getting started, you want to learn more about developing and
> > > deploying applications.
> > > Learn more about Google App Engine by reading the Getting Started
> > > Guide, the FAQ, or the Developer's Guide.
> > > [Create an Application]
>
> > > I read there is an admin console I would like to access to it? I don't
> > > know how to do, please help me : )
>
> > > Thank you.

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: How to see the list of my applications?

2010-07-08 Thread tleroy
Thank you for the response Dider,
but I did it and i'm redirected to https://appengine.google.com/start
where i only see :

Welcome to Google App Engine

Before getting started, you want to learn more about developing and
deploying applications.
Learn more about Google App Engine by reading the Getting Started
Guide, the FAQ, or the Developer's Guide.

I used an email with a domain manage by google app and I 've noticed
something strange :
to connect me to the admin console I use the password of my google
account, it's ok but to deploy my applications I must enter my email
password ?!


On 5 juil, 05:53, Didier Durand  wrote:
> Hi,
>
> After your login, put this address on in address bar of your 
> browserhttps://appengine.google.com/
> didier
>
> On Jul 3, 4:43 pm, tleroy  wrote:
>
> > Hi everybody,
>
> > maybe it's a basic question but I can't see the list of my
> > applications.
> > The only things I see when i log in my gae account is :
>
> > Welcome to Google App Engine
>
> > Before getting started, you want to learn more about developing and
> > deploying applications.
> > Learn more about Google App Engine by reading the Getting Started
> > Guide, the FAQ, or the Developer's Guide.
> > [Create an Application]
>
> > I read there is an admin console I would like to access to it? I don't
> > know how to do, please help me : )
>
> > Thank you.

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] How to see the list of my applications?

2010-07-03 Thread tleroy
Hi everybody,

maybe it's a basic question but I can't see the list of my
applications.
The only things I see when i log in my gae account is :


Welcome to Google App Engine

Before getting started, you want to learn more about developing and
deploying applications.
Learn more about Google App Engine by reading the Getting Started
Guide, the FAQ, or the Developer's Guide.
[Create an Application]

I read there is an admin console I would like to access to it? I don't
know how to do, please help me : )

Thank you.

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] How to watch my applications in the GAE Administration Console

2010-06-06 Thread tleroy
I can't access to my application in the GAE
I connect to my google account I used to create my applications but I
only see a button to create a new application!?
I had some difficulties to send upload my aplication because of my
password. At the first time I try to use the password I used to
connect to my google account but that doesn't work. So I tried the
password I used to read my mail and that's work. Strange no?
I suppose that's because I create my google account with an email of
my domain and I use google app for my mail. Is it a bug?

Have you any idea?

Merci.

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.