package com.towertech.repository;

import java.net.URL;

public class TTSysServicesTest
{

	public static void main(String args[]) throws Exception
	{
		TTSysServicesLocator serviceLocator =
			new TTSysServicesLocator();

		URL url = new URL(args[0]);

		TTSysServicesSoapStub stub =
			(TTSysServicesSoapStub)serviceLocator.getTTSysServicesSoap(url);

		String license = stub.login("tower", "", null);

		System.out.println("License = " + license);

		stub.logout(license);
	}

}
