import jp.dbcls.togows.soap.*;

public class DdbjBlastGetSupportDatabaseList {

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

            TogowsDdbjBlastService service = new TogowsDdbjBlastServiceLocator();
            TogowsDdbjBlastPort stub = service.getTogowsDdbjBlastPort();

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

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