It's all about the answers!

Ask a question

migrating from 5.0.2 to 6.0.1 on tomcat


Kim Soederhamn (1.5k24247) | asked Jan 14 '16, 4:40 a.m.
edited Jan 14 '16, 6:59 p.m. by Geoffrey Clemm (30.1k33035)
When you migrate from 5.0.2 to 6.0.1 and you choose to stay on Tomcat (7.0.59) you may run into the problem that you get an error like this after you log in:

One answer



permanent link
Geoffrey Clemm (30.1k33035) | answered Jan 14 '16, 6:59 p.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
edited Jan 14 '16, 7:01 p.m.
Answer from Kim:

This is because the migration does not copy the <web-resource-collection> part of the web.xml's

so to fix this problem you can simply copy the part from you old web.xml's into your CLM applications files and your applications will start doing the correct redirect upon login one by one.
It could look something like:
<web-resource-collection>
   <web-resource-name>secure</web-resource-name>
   <url-pattern>/authenticated/identity</url-pattern>
   <url-pattern>/secure/authenticated/identity</url-pattern>
   <url-pattern>/web/loggedInUser</url-pattern>
   <!-- This URL pattern is a work-around so that older RQM clients can log into RQM 2.0 servers without modification. This line should be removed when there are fixpacks available for the older clients -->
   <url-pattern>/secure/service/com.ibm.rqm.integration.service.IIntegrationService</url-pattern>
</web-resource-collection> 

Comments
Don Yang commented Jan 14 '16, 6:48 p.m. | edited Jan 14 '16, 7:00 p.m.

Thanks Kim for sharing this info.

Your answer


Register or to post your answer.


Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.