fix html errors
[proteocache.git] / server / compbio / ws / jpred / JpredClient.java
index 6fe8f84..ea62bde 100644 (file)
@@ -15,9 +15,9 @@ public class JpredClient {
                URL url = new URL("http://localhost:8080/proteocache-1.0/ProteoCacheWS");
                Service service = Service.create(url, qname);
                Jpred sequense = service.getPort(Jpred.class);
-               String result = sequense.findSequence("EQCGRQAGGKLCPNNLCCSQWGWCGSTDEYCS", "Jpred", "3.0.1");
+               int result = sequense.findSequence("EQCGRQAGGKLCPNNLCCSQWGWCGSTDEYCS", "Jpred", "3.0.1");
 
-               System.out.println("Result : " + result);
+               System.out.println("Result : " + result + " jobs found");
        }
 
 }