diff options
author | relves | 2006-10-12 00:32:31 +0000 |
---|---|---|
committer | relves | 2006-10-12 00:32:31 +0000 |
commit | cdfbb53b6a159b9627bac3497414fca67763f2b1 (patch) | |
tree | 3b2f10c9cc4640510a1a6c5d1500ecaa90a1929d | |
parent | 105116900e9c34ecdcea6224ea6232033961f7a6 (diff) | |
download | org.eclipse.mylyn.tasks-cdfbb53b6a159b9627bac3497414fca67763f2b1.tar.gz org.eclipse.mylyn.tasks-cdfbb53b6a159b9627bac3497414fca67763f2b1.tar.xz org.eclipse.mylyn.tasks-cdfbb53b6a159b9627bac3497414fca67763f2b1.zip |
Progress on: 160360: unable to validate credentials against eclipse.org
https://bugs.eclipse.org/bugs/show_bug.cgi?id=160360
-rw-r--r-- | org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaServerFacade.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaServerFacade.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaServerFacade.java index 34c281fd0..eef9a95b5 100644 --- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaServerFacade.java +++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaServerFacade.java @@ -143,6 +143,9 @@ public class BugzillaServerFacade { + URLEncoder.encode(userid, BugzillaCorePlugin.ENCODING_UTF_8) + IBugzillaConstants.POST_ARGS_PASSWORD + URLEncoder.encode(password, BugzillaCorePlugin.ENCODING_UTF_8); + // For bug#160360 + MylarStatusHandler.log("VALIDATING: "+url, BugzillaServerFacade.class); + URL serverURL = new URL(url); HttpURLConnection serverConnection = WebClientUtil.openUrlConnection(serverURL, proxySettings, false); BufferedReader in = new BufferedReader(new InputStreamReader(serverConnection.getInputStream())); |