Monday, March 22, 2010

Sunday, February 28, 2010

Google Checkout is here! Added a custom shopping cart using the Google Checkout XML API. A slight wrinkle getting JDOM to work with GAE, but a quick fix searching JDOM and "Google App Engine", on Google, of course, and everything is running nicely.

Looking into monetizing the site, but don't won't to overburden the download pulling in a lot of embedded content.

Synchronizing the product database now, and should begin seeing some hits. Oh, didn't mention, integrated the site with Google Analytics. Should have done it before hitting the forums, but no bites, yet, on product integration, either. Seems everyone has been there, done that.

But, not on Google App Engine, cheers!

Wednesday, February 24, 2010

Product Advertising API

Thinking about adding Amazon Advertising to app engine

Product Advertising API

Sunday, January 31, 2010

Working with GWT, beginning with the Getting Started tutorial, trying to deploy Bookstore to GAE in one weeked! Almost got stumped adding ClickHander to a Grid, thankfully someone posted this solution,

// listen for mouse events on the results grid
resultsGrid.addClickHandler(new ClickHandler() {
   public void onClick(ClickEvent event) {
      final HTMLTable table = (HTMLTable) event.getSource();
      final HTMLTable.Cell cell = table.getCellForEvent(event);
      // cell.getCellIndex() COL
      // cell.getRowIndex() ROW
   });

Very cool!