From 50d9147b3034ce9a881af11d4a80ca9efd6d4c31 Mon Sep 17 00:00:00 2001 From: phkrug Date: Wed, 9 Sep 2020 17:11:31 +0200 Subject: [PATCH] Default value for server input changed The previous given default is not working with the code. The code checks for the .asmx ending of the URL and appends the default endpoint ReportService2010.asmx if needed. The URL ending with ?wsdl resulted in an improper append of /ReportService2010.asmx which will not work at all. --- task/task.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task/task.json b/task/task.json index 031d8fe..bf65be3 100644 --- a/task/task.json +++ b/task/task.json @@ -36,7 +36,7 @@ "name": "url", "type": "string", "label": "ReportService2010 endpoint URL", - "defaultValue": "http://your.server/ReportServer/ReportService2010.asmx?wsdl", + "defaultValue": "http://your.server/ReportServer/ReportService2010.asmx", "required": true, "helpMarkDown": "The Report Server Web service ReportService2010 endpoint URL" },