Hello everybody,
I'm trying to change the default user name and password in basex web app. I changed the param-value in WEB-INF/web.xml but when deployed in Tomcat or using as standalone application by running BaseX HTTP Server, the web app is still requiring as user name and password "admin", "admin". What am I doing wrong?
<context-param> <param-name>org.basex.user</param-name> <param-value>myusername</param-value> </context-param> <context-param> <param-name>org.basex.password</param-name> <param-value>mypassword</param-value> </context-param>
Thanks.