Hi
I have a tomcat 5.5 application that I am trying to debug in myEclipse.
I could not do so for a while but then removed my META-INF/context.xml and debugging started working.
Is there anything I have to have in this to allow debugging with that in place?
Here is the slightly edited version
<Context docBase="config" path="/config" debug="true">
<!-- -->
<Resource name="jdbc/xxxxx"
auth="Container"
type="oracle.jdbc.pool.OracleDataSource"
driverClassName="oracle.jdbc.driver.OracleDriver"
factory="oracle.jdbc.pool.OracleDataSourceFactory"
url="jdbc:oracle:thin:@xxxx:1521:xe"
user="xxxx" connectionCachingEnabled="true"
maxActive="20" maxIdle="10" maxWait="-1" />
<Realm className="org.apache.catalina.realm.DataSourceRealm" debug="99"
dataSourceName="jdbc/xxxxx" localDataSource="true"
userTable="users" userNameCol="userid" userCredCol="password"
userRoleTable="user_roles" roleNameCol="role_name"/>
</Context>
Many thanks in advance