<dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-catalina</artifactId>
            <version>8.5.3</version>
            <scope>provided</scope>
        </dependency>

this is part of tomcat backbone not tomee code by itself so you need to use
the pure tomcat artifact (version is logged next to tomee one at startup
normally)

Romain Manni-Bucau
@rmannibucau <https://twitter.com/rmannibucau> |  Blog
<https://blog-rmannibucau.rhcloud.com> | Old Wordpress Blog
<http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> |
LinkedIn <https://www.linkedin.com/in/rmannibucau> | Tomitriber
<http://www.tomitribe.com> | JavaEE Factory
<https://javaeefactory-rmannibucau.rhcloud.com>

2016-08-25 6:19 GMT+02:00 scaddenp <[email protected]>:

> Well thanks for your patience. I am certainly learning a lot here. What I
> know so far is that it is retrieving the digested password correctly from
> the source but is obviously bombing when comparing to entered password.
>
> However the issue I am having is mismatch between debugger and source. The
> tomcat-catalina.jar in the server class says 7.0.1 so put
>         <dependency>
>             <groupId>org.apache.tomcat</groupId>
>             <artifactId>tomcat-catalina</artifactId>
>             <version>7.0.1</version>
>             <scope>provided</scope>
>         </dependency>
>
> in pom, but getting a better match with source using a version 8. (7
> versions give "no executable location etc for line no. in the 7 sources).
> However, the results seem to get the jdbc source off the hook. My
> server.xml
> Engine looks like:
>    <Engine name="Catalina" defaultHost="localhost">
>
>       <Realm className="org.apache.catalina.realm.LockOutRealm"
> failureCount="3" lockOutTime="150">
>             <Realm className="org.apache.catalina.realm.DataSourceRealm"
>                dataSourceName="jdbc/auth"
>                userTable="datauser" userNameCol="username"
> userCredCol="password"
>                userRoleTable="datarole" roleNameCol="rolename" />
>              <CredentialHandler
>
> className="org.apache.catalina.realm.MessageDigestCredentialHandler"
>                    algorithm="MD5" saltLength="0" iterations="1"/>
>             </Realm>
> ...
>
> Does that look correct?
>
>
>
> --
> View this message in context: http://tomee-openejb.979440.
> n4.nabble.com/Digest-changed-from-1-7-2-to-7-0-1-tp4679792p4679878.html
> Sent from the TomEE Users mailing list archive at Nabble.com.
>

Reply via email to