import jp.dbcls.togows.soap.*;

public class DdbjFastaGetSupportDatabaseList {

    public static void main(String[] args) {
        try {

            TogowsDdbjFastaService service = new TogowsDdbjFastaServiceLocator();
            TogowsDdbjFastaPort stub = service.getTogowsDdbjFastaPort();

            String result = stub.ddbjFastaGetSupportDatabaseList();
            System.out.println(result);

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
