On Mar 24, 10:43 pm, Peter Warren <[email protected]> wrote:
> I have a Google Web Toolkit client that is served from Google App
> Engine.  I'm trying to follow the Google-recommended practice for seo/
> crawling of ajax apps outlined here:http://code.google.com/web/ajaxcrawling/.
>
> 1) I understand that HtmlUnit doesn't work on App Engine.  Is that
> right?
>
> 2) Are there any other headless browser APIs that would work on App
> Engine, or any other alternatives for serving html snapshots of my
> application?
>
> Thanks,
> Peter
com.meterware.httpunit.*; you may find successful since with regular
LAMP a hasty way I did is
WebConversation wc = new WebConversation();
HttpUnitOptions.setScriptingEnabled(false);
WebRequest req = new GetMethodWebRequest("http://mydomain.tld/
submit.html");
WebResponse resp = wc.getResponse(req);
kform = resp.getForms()[0];
kform.setParameter("name", myForm.getName());
....
=logs in and so

-- 
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