import jp.dbcls.togows.soap.*;

public class DdbjGetentryGetBlocksEntry {

    public static void main(String[] args) {
        try {
            String accession = "IPB000009A"; 

            TogowsDdbjGetentryService service = new TogowsDdbjGetentryServiceLocator();
            TogowsDdbjGetentryPort stub = service.getTogowsDdbjGetentryPort();

            String result = stub.ddbjGetentryGetBlocksEntry(accession);
            System.out.println(result);

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