SRWPort port=service.getSRW(url);
ScanRequestType scanRequest=new ScanRequestType();
scanRequest.setVersion("1.1");
scanRequest.setScanClause("education");
ScanResponseType scanResponse=port.scanOperation(scanRequest);
if(scanResponse!=null) {
TermsType terms=scanResponse.getTerms();
if(terms!=null) {
TermType[] term=terms.getTerm();
System.out.println(term.length+" terms returned");