Re: [jmeter] branch master updated: Error when loading Templates on Windows

2020-03-15 Thread Felix Schumacher
Am 15.03.20 um 11:16 schrieb Felix Schumacher: > Am 15.03.20 um 11:10 schrieb Vladimir Sitnikov: >>> -Document document = bd.parse(file.getAbsolutePath()); >>> +Document document = bd.parse(file.toURI().toString()); >> Felix, is there a reason why bd.parse(file) is not used? >

Re: [jmeter] branch master updated: Error when loading Templates on Windows

2020-03-15 Thread Felix Schumacher
Am 15.03.20 um 11:10 schrieb Vladimir Sitnikov: >> -Document document = bd.parse(file.getAbsolutePath()); >> +Document document = bd.parse(file.toURI().toString()); > Felix, is there a reason why bd.parse(file) is not used? Hm, good question. Maybe Philippe can answer that one,

Re: [jmeter] branch master updated: Error when loading Templates on Windows

2020-03-15 Thread Vladimir Sitnikov
>-Document document = bd.parse(file.getAbsolutePath()); >+Document document = bd.parse(file.toURI().toString()); Felix, is there a reason why bd.parse(file) is not used? Vladimir