Add explicit URL object
[proteocache.git] / server / compbio / ws / jpred / JpredClient.java
index 08948e8..6fe8f84 100644 (file)
@@ -12,8 +12,8 @@ public class JpredClient {
 
        public static void main(String[] args) throws Exception {
                QName qname = new QName("http://server.proteocache.ws", "ProteoCacheWS");
-
-               Service service = Service.create(new URL("http://localhost:8080/proteocache-1.0/ProteoCacheWS"), qname);
+               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");