Tests Product Service
ProductClient2 client = new ProductClient2();
ProductBean product = client.getProduct("A358185");
assertEquals ("Red Hat Linux", product.getName());
assertEquals ("Red Hat Linux Operating System", product.getDescription());
assertEquals (54.99, product.getPrice(), 0.0);
try {
product = client.getProduct("AA");
fail ("ProductException should have been thrown.");
} catch (ProductNotFoundException e) {
}