Saturday, May 17, 2014

Re: Can you tell me Step-By-Step Guidelines of How to use HtmlUnit to make GWT app Crawlable?

seem they can read only static data, not dynamic data taken from DB. 
Ex, in your GWTP page, if u have label.setText("my text"); then Google can read "my text".

However, if you do like this, 

String text=getDataFromDB(); // getDataFromDB() uses RPC call,

//suppose getDataFromDB() return "my text"

label
.setText(text); // then Google can't read text.

Id Google can be able to read the dynamic data then they should announce their achievement to public, but I found no such announcement on the internet.


On Sunday, May 18, 2014 4:47:11 AM UTC+10, Joseph Lust wrote:
FWIW, I've had Google crawling my GWTP based sites without a problem, and I've added no such servlet. I think they've figured out how to do the JS evaluation on their side. Using Googles Web Developer tools, they request and display my page and sub pages just fine and they're all GWT.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment