Actions
Bug #7166
closedMetacat DataONE base url always gets 404 not found page
Start date:
12/06/2016
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
Description
The base url looks like:
https://mn-dev-ucsb-1.test.dataone.org/metacat/d1/mn
It always gets 404 not found page. Even though Metacat on this node is running, users always think something is wrong. We need this url display the node information.
Updated by Jing Tao almost 8 years ago
- Status changed from New to Closed
In the lib/web.xml.tomcat6 file, I added two servelet mappings:
<servlet-mapping>
<servlet-name>MNRestServletV2</servlet-name>
<url-pattern>/d1/mn/</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>MNRestServletV2</servlet-name>
<url-pattern>/d1/mn</url-pattern>
</servlet-mapping>
This will lead the page to display the node information.
Actions