// This is a code fragment showing the use of the StockPriceService.
try
{
	QuoteStockPriceService o = new QuoteStockPriceService(                                   
		StockSymbol
	);
	System.out.println("StockPrice = " + o.StockPrice);
} catch (Exception e) {
       	System.err.println(e);
}
