NCAR / joai-project

jOAI is an OAI-PMH data provider and harvester Java web application
Apache License 2.0
16 stars 8 forks source link

http://www.dlese.org/dpc/dds/tags/dleseELFunctions is not reachable #7

Closed DigitLib closed 4 years ago

DigitLib commented 4 years ago

On start I got this message: The absolute uri: [http://www.dlese.org/dpc/dds/tags/dleseELFunctions] cannot be resolved in either web.xml or the jar files deployed with this application

After checking the link it seems don't exist anymore. App don't work.

How to solve this?

jweatherley commented 4 years ago

This message indicates that Tomcat cannot find the required Java class files that are included in the application (the URI [ http://www.dlese.org/dpc/dds/tags/dleseELFunctions] does not resolve to a URL on the internet but rather it references Java classes inside the application).

When the app starts up, the class files inside oai.jar will unpack into the WEB-INF directory, e.g. webapps/oai/WEB-INF/classes/org/dlese/dpc/...

It appears something is not properly installed or you may have an incompatible version of Tomcat or the Java/JVM.

Note that jOAI was last verified to run under Tomcat 6, 7, or 8, and Java 8.

Be sure to closely follow the installation instructions here: https://github.com/NCAR/joai-project/blob/master/web/docs/INSTALL.txt

Best regards,

John

On Mon, Jun 8, 2020 at 3:19 PM Andrija Sagicc notifications@github.com wrote:

On start I got this message: The absolute uri: [http://www.dlese.org/dpc/dds/tags/dleseELFunctions] cannot be resolved in either web.xml or the jar files deployed with this application

After checking the link it seems don't exist anymore. App don't work.

How to solve this?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/NCAR/joai-project/issues/7, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAJVC7K6MUEYC2FMXN5KLKDRVVIWXANCNFSM4NYY57JA .

DigitLib commented 4 years ago

Thank you! I have Tomcat 8.5.31 and jre 8_241

DigitLib commented 4 years ago

It work now! Thank you!