Summary: | cannot remote deploy with Ant DeployTask | ||
---|---|---|---|
Product: | Tomcat 9 | Reporter: | Satoshi Kubo <megascus> |
Component: | Manager | Assignee: | Tomcat Developers Mailing List <dev> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | P2 | ||
Version: | 9.0.12 | ||
Target Milestone: | ----- | ||
Hardware: | PC | ||
OS: | All |
Description
Satoshi Kubo
2018-10-09 07:33:49 UTC
This appears to be a consequence of the way DIGEST support was implemented for bug 45832. I'm currently looking at options for fixing this. As a work-around, use the following code before the DeployTask. It causes the credentials to be cached so the DeployTask is performed with the credentials present which avoids this issue. Sorry, missed the code: ListTask list = new ListTask(); list.setUsername("tomcat"); list.setPassword("tomcat"); list.setUrl("http://localhost:8080/manager/text"); list.execute(); Thanks. Your information helped me a lot. Fixed in: - trunk for 9.0.13 onwards - 8.5.x for 8.5.35 onwards - 7.0.x for 7.0.92 onwards |