Minor update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/data-miner-manager-cl@133941 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
750ffd4015
commit
514ac78939
4
.project
4
.project
|
@ -16,12 +16,12 @@
|
||||||
</arguments>
|
</arguments>
|
||||||
</buildCommand>
|
</buildCommand>
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
<name>org.eclipse.m2e.core.maven2Builder</name>
|
<name>org.eclipse.wst.validation.validationbuilder</name>
|
||||||
<arguments>
|
<arguments>
|
||||||
</arguments>
|
</arguments>
|
||||||
</buildCommand>
|
</buildCommand>
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
<name>org.eclipse.wst.validation.validationbuilder</name>
|
<name>org.eclipse.m2e.core.maven2Builder</name>
|
||||||
<arguments>
|
<arguments>
|
||||||
</arguments>
|
</arguments>
|
||||||
</buildCommand>
|
</buildCommand>
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
disabled=06target
|
||||||
|
eclipse.preferences.version=1
|
|
@ -428,11 +428,11 @@ public class SClient4WPSSession implements Serializable {
|
||||||
String requestURL = req.getRequest(url);
|
String requestURL = req.getRequest(url);
|
||||||
|
|
||||||
String authString = user + ":" + password;
|
String authString = user + ":" + password;
|
||||||
logger.debug("auth string: " + authString);
|
//logger.debug("auth string: " + authString);
|
||||||
byte[] authEncBytes = Base64
|
byte[] authEncBytes = Base64
|
||||||
.encodeBase64(authString.getBytes());
|
.encodeBase64(authString.getBytes());
|
||||||
String encoded = new String(authEncBytes);
|
String encoded = new String(authEncBytes);
|
||||||
logger.debug("Base64 encoded auth string: " + encoded);
|
//logger.debug("Base64 encoded auth string: " + encoded);
|
||||||
|
|
||||||
URL urlObj = new URL(requestURL);
|
URL urlObj = new URL(requestURL);
|
||||||
HttpURLConnection connection = (HttpURLConnection) urlObj
|
HttpURLConnection connection = (HttpURLConnection) urlObj
|
||||||
|
|
Loading…
Reference in New Issue