Skip to content

Commit

Permalink
Use HTTPS by default
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Dec 18, 2023
1 parent e956e38 commit dad9ebb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ enum Connector
PICR ("picr", "idmapper-picr:"),

SYNERGIZER_ENSEMBL ("synergizer(ensembl)", "idmapper-synergizer:authority=ensembl&species=Homo sapiens"),
BRIDGEWEBSERVICE ("BridgeWebservice", "idmapper-bridgerest:http://webservice.bridgedb.org/Human"),
BRIDGEWEBSERVICE ("BridgeWebservice", "idmapper-bridgerest:https://webservice.bridgedb.org/Human"),
BRIDGEWEBSERVICE_LOCAL ("BridgeWebservice(local)", "idmapper-bridgerest:http://localhost:8183/Human"),
BIOMART ("biomart", "idmapper-biomart:http://www.biomart.org/biomart/martservice?mart=ensembl&dataset=hsapiens_gene_ensembl"),
CRONOS ("cronos", "idmapper-cronos:hsa"),
Expand Down
2 changes: 1 addition & 1 deletion benchmarking/test/org/bridgedb/benchmarking/TestAll.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void testBridgeWebservice() throws IDMapperException, ClassNotFoundExcept
Class.forName("org.bridgedb.webservice.bridgerest.BridgeRest");
Xref insr1 = new Xref ("ENSG00000171105", DataSource.getBySystemCode("EnHs"));
Xref insr2 = new Xref ("3643", DataSource.getBySystemCode("L"));
basicMapperTest (measure, "bridgerest", "idmapper-bridgerest:http://webservice.bridgedb.org/Human", insr1, insr2);
basicMapperTest (measure, "bridgerest", "idmapper-bridgerest:https://webservice.bridgedb.org/Human", insr1, insr2);
}

public void testFile() throws IDMapperException, ClassNotFoundException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private BufferedReader openReader() throws IOException
}

/**
* @param baseUrl base Url, e.g. http://webservice.bridgedb.org/Human or
* @param baseUrl base Url, e.g. https://webservice.bridgedb.org/Human or
* http://localhost:8182
* @throws IDMapperException when service is unavailable
*/
Expand Down

0 comments on commit dad9ebb

Please sign in to comment.