...
- Copy the following jar files into tomcat's
lib
directory:jna.jar, platform.jar, wafflejna.jar
. Add the following to
tomcat/conf/server.xml
.Code Block <Context> <Valve className="waffle.apache.NegotiateAuthenticator" principalFormat="fqn" roleFormat="both"/> <Realm className="waffle.apache.WindowsRealm" /> </Context>
Info title Where is server.xml? If you installed SOAtest but not Virtualize: Launch SOAtest, ensure that at least one responder has been created, then modify the server.xml file at [SOAtest install dir]<INSTALL>/eclipse/plugins/com.parasoft.xtestptest.libs.web_[version]<VERSION>/root/tomcat/conf/server.xml
If you installed Virtualize but not SOAtest: Launch Virtualize, ensure that at least one responder has been created, then modify the server.xml file at [Virtualize install dir]<INSTALL>/eclipse/plugins/com.parasoft.xtestptest.libs.web_[version]<VERSION>/root/tomcat/conf/server.xml
If you installed Virtualize and SOAtest together: Launch Virtualize, ensure that at least one responder has been created, then modify the server.xml file at [SOAtest install dir]<INSTALL>/eclipse/plugins/com.parasoft.xtestptest.libs.web_[SOAtest_ver]<VERSION>/root/tomcat/conf/server.xml
Add the following to
tomcat/conf/web.xml
.Code Block <security-role> <role-name>Everyone</role-name> </security-role> <security-constraint> <display-name>Waffle Security Constraint</display-name> <web-resource-collection> <web-resource-name>Protected Area</web-resource-name> <url-pattern>/*</url-pattern> </web-resource-collection> <auth-constraint> <role-name>Everyone</role-name> </auth-constraint> </security-constraint>
- Restart the server.
...