Home :: Books :: Computers & Internet  

Arts & Photography
Audio CDs
Audiocassettes
Biographies & Memoirs
Business & Investing
Children's Books
Christianity
Comics & Graphic Novels
Computers & Internet

Cooking, Food & Wine
Entertainment
Gay & Lesbian
Health, Mind & Body
History
Home & Garden
Horror
Literature & Fiction
Mystery & Thrillers
Nonfiction
Outdoors & Nature
Parenting & Families
Professional & Technical
Reference
Religion & Spirituality
Romance
Science
Science Fiction & Fantasy
Sports
Teens
Travel
Women's Fiction
eBay Application Development

eBay Application Development

List Price: $34.99
Your Price: $23.09
Product Info Reviews

<< 1 >>

Rating: 5 stars
Summary: Best hardcopy resource for Ebay SDK.
Review: This is may be the only hard copy resource for information on the Ebay SDK and API. I found this book easy to follow and well organized. The samples were easy to understand and to the
point. The samples in the book are written in C# and PHP and are followed by detailed sections on what each part of the code does. I found using this book was much easier than trying to
navigate the Ebay documentation.

The book is seperated into basically two sections one focused on the SDK and the other focused the API. The part I found most useful was the chapter on the Integration Library. This chapter dicusses synchronizing data between your application and Ebay. This chapter alone will get you thinking of any number of useful applications you could build. The examples were very useful in providing an understanding of the Integration Library. If you are doing any Ebay development work this is an invaluable resource.

Rating: 4 stars
Summary: Use an XML feed or an SDK
Review: One of the great successes online is eBay. A not-so-small cottage industry has arisen to help users buy or sell more easily. Of this, an important subset handles cases where users are companies that might want to integrate and automate their inventory needs with eBay.

Rischpater points out that there are two ways to do this. The first, and chronologically it certainly was, is to write code that screen scraps eBay pages and extracts the desired data. Brittle. Because when eBay changes the layout, it breaks the scraping and you have to recode. There is also a problem for eBay. If you scrape, you end up discarding most of the page, like the HTML formatting commands. Unnecessary bandwidth usage, on both your end and eBay's. More burden on their servers.

The problem for eBay is that it cannot stop scraping. Indistinguishable from users manually requesting pages. So in part because of this, eBay offers an XML data feed and a higher level Software Development Kit (SDK). The XML feed is conceptually the simplest and also the most general, for your computer operating system and language can be anything that has an XML parser. Like linux and C++ or Java, for example. If you already know XML, this will be easy.

But the bulk of his presentation centres around using the SDK. This is a set of .NET assemblies (class libraries). So you are restricted to running your application on Microsoft Windows, because currently that is the only thing that supports .NET. But one of the virtues of .NET is that it supports a host of languages, like C, C++. C# and Perl. He strongly suggests that you consider using the SDK, and an associated library, because these are well debugged by eBay and offer functionality that has been found to be broadly useful by many developers. Whereas using the raw XML feed requires you to replicate some or most of this functionality.

Still, both are good choices, as compared to screen scraping. The book's explanations are good enough that you can tackle either.

Rating: 2 stars
Summary: OK overview, but stops short... not real pleased
Review: This book provides a decent overview of eBay development, but it stops short of providing many direct solutions to programming issues. It's more of a reference (which it does an ok job of being), full of tables of values, etc. However, that's all available in eBay's documentation.

I was not at all happy with the author's use of C# psudo-code rather than showing actual code. Did he have some super-secret app that he didn't want to share? I downloaded the code from the web site, but there were many examples that did not work.

Your choices with this book are C# and Pearl. There's not a line of VB.NET. Also, the web site only give you the sample code... nothing up there about new changes (such as Auth & Auth) that eBay has recently added.

Overall, I'm not really happy with this book. It feels like it was released to get something out there first, not best.

Rating: 4 stars
Summary: Good introduction.
Review: This is a good introduction to eBay's new public interface and developer program, focusing primarily on how to build applications for desktop users with their SDK. It does a good job introducing not just the interfaces and API's but also the basics of Web programming at the same time.

In reading it, I got a good understanding of what I could and couldn't do with eBay, and a better start than I would have with the eBay documentation alone.


<< 1 >>

© 2004, ReviewFocus or its affiliates