*
* @param args server, user email, and user password in that order.
*/
public static void main(String[] args) {
// Google Finance GData service.
FinanceService service = new FinanceService("Google-PortfoliosDemo-1.0");
Scanner sc = new Scanner(System.in);
System.out.println("Sample Google Finance Portfolios Client");
if (args.length != 1 && args.length != 3) {
printUsage();
System.exit(0);