In web.xml, the default image rubber stamp parameters need to have their path changed as shown in the example below, or else the viewer will spin and not load any documents.

To take the “Approved” default stamp as an example, you would need to change the parameter as follows:

<init-param>
<param-name>Approved</param-name>
<param-value>
Approved,535,293,http://localhost:8080/virtualviewer/resources/stamps/Approved.png
</param-value>
</init-param>

to:

<init-param>
<param-name>Approved</param-name>
<param-value>
Approved,535,293,http://localhost:8080/[new/path/to/your/resource/folder]/Approved.png
</param-value>
</init-param>