Hello,
I have created a website using GAE. I used a treeview control from
Yahoo user Interface Library.  I ceated a sitemap for the site to help
Google crawlers to quickly index my site.  I use a tree that supports
AJAX techniques:
1. When the user clicks on one of the children nodes of my tree, the
request is sent asynchronously to the GAE server to fetch the data for
the client.
2. When children nodes are requested for a parent node, the request is
sent asynchronously to the server to fetch the children nodes for the
client.

Both of the above tasks send the same query names( /rpc?), for the
same handler on the server side, for instance, RPCHandler class.  But
different class methods are used each time according to the action
required; fetching children nodes or in the first situation fetching
data linked to a child node.

Now, the google crawler is reporting to me that the file 
http://myapplication/rpc
is not found.  There is no file called rpc in the first place as this
is the method used to fetch data asynchronously!!!

Do I need to tell google to ignore those links? how can I do that?
On the other hand, is it possible to make it clear to the crawler that
these are ajax calls not pages to load?

If you have any clues, please help as this is the first website I
develop and I don't have any clues on how to sort out the problem...

Thank you very much.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to