package jp.jcgpdb.webservice.sample; /** */ public class searchGlycoprotein { public static void main(String[] args) { try { jp.jcgpdb.webservice.GPDBStub stub = new jp.jcgpdb.webservice.GPDBStub("http://localhost:8081/rcmg/services/GPDB"); jp.jcgpdb.webservice.GPDBStub.SearchGlycoprotein req = new jp.jcgpdb.webservice.GPDBStub.SearchGlycoprotein(); req.setGlycoprotein("a"); req.setType("list"); //req.setType("count"); req.setOffset(0); req.setLimit(0); jp.jcgpdb.webservice.GPDBStub.SearchGlycoproteinResponse res = stub.searchGlycoprotein(req); System.out.println(res.get_return()); } catch (Throwable e) { e.printStackTrace(); } } }