From 22e41c9f65376389c64c50c0a8bf83287bb129d7 Mon Sep 17 00:00:00 2001 From: Costantino Perciante Date: Mon, 20 Jun 2016 15:18:30 +0000 Subject: [PATCH] create method fixed git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-catalogue/ckan-util-library@129186 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../org/gcube/datacatalogue/ckanutillibrary/CKanUtilsImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/gcube/datacatalogue/ckanutillibrary/CKanUtilsImpl.java b/src/main/java/org/gcube/datacatalogue/ckanutillibrary/CKanUtilsImpl.java index be8cf1c..46e6ab4 100644 --- a/src/main/java/org/gcube/datacatalogue/ckanutillibrary/CKanUtilsImpl.java +++ b/src/main/java/org/gcube/datacatalogue/ckanutillibrary/CKanUtilsImpl.java @@ -854,7 +854,7 @@ public class CKanUtilsImpl implements CKanUtilsInterface{ } try{ - String callUrl = CKAN_CATALOGUE_URL + "/ckan-connector/organization/" + orgName + "?gcube-token=" + token; + String callUrl = CKAN_CATALOGUE_URL + "/ckan-connector/gcube/service/organization/" + orgName + "?gcube-token=" + token; URL url = new URL(callUrl); HttpsURLConnection connection = (HttpsURLConnection)url.openConnection(); connection.setRequestMethod("PUT");