Add explicit URL object
authorSasha Sherstnev <a.sherstnev@dundee.ac.uk>
Mon, 3 Feb 2014 10:27:39 +0000 (10:27 +0000)
committerSasha Sherstnev <a.sherstnev@dundee.ac.uk>
Mon, 3 Feb 2014 10:27:39 +0000 (10:27 +0000)
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");