[Dspace-tech] Batch move item between collections

2015-05-13 Thread Olivier Nicole
Hello, I have a large number of items that ended up in the wrong collection. One of the metadata attached to each item will allow me to sort them out, but I need to move the items around in the database. I have seen that the tables item and collection2item both associate an item with a

Re: [Dspace-tech] Help for dspace backup/restore

2015-05-13 Thread Emmanuel Wilson
i found something good on this topic: https://wiki.duraspace.org/display/DSDOC4x/AIP+Backup+and+Restore#AIPBackupandRestore-RestoringEntireSite Flavio Vieira Pontes https://wiki.duraspace.org/display/~flavio Is it possible to use AIP to move the entire site from a earlier version to the most

[Dspace-tech] About XMLUI and cache

2015-05-13 Thread Evgeni Dimitrov
Hi, This is about DSpace 5.1. I am trying to make a small change in the way an item is displayed. When the user has write rights on the item it should display as originally. Otherwise the item handle is passed to another web application. I added several lines in the beginning of

Re: [Dspace-tech] About XMLUI and cache

2015-05-13 Thread Antoine Snyers
Hi Evgeni Dimitrov You have to modify the public Serializable getKey() and public SourceValidity getValidity() methods of that same class. These methods evaluate whether addBody should be called or whether the cached document may be used. Evgeni Dimitrov schreef op 13/05/15 om 11:01: Hi,

[Dspace-tech] OAI Server error

2015-05-13 Thread cotanio
Hi, Our OAI´s server is down When trying to connect to: http://digitum.um.es/oai/request The following error message is shown: [WARN] deprecation - The 'component-configurations' section in the sitemap is deprecated. Please check for alternatives. [Fatal Error] :1:50: White spaces are

[Dspace-tech] ORA-00903: invalid table name error while submission.

2015-05-13 Thread Vineet Kumar Rakesh
I installed Dspace 5.1 on RHEL6.5 with oracle 11g r2 database, installationsuccessful but i am getting error Please helpORA-00903: invalid table nameJava stacktrace: java.sql.SQLSyntaxErrorException: ORA-00903: invalid table name at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:447)

Re: [Dspace-tech] Batch move item between collections

2015-05-13 Thread Tim Donohue
Hi Olivier, My guess would be that you may need to reindex. Since you moved the objects manually in the database tables, the browse/search indexes may not be fully aware of the move. Assuming you are using Discovery, you'd likely need to run [dspace]/bin/dspace index-discovery -b In the

Re: [Dspace-tech] Help for dspace backup/restore

2015-05-13 Thread Tim Donohue
Hi Emmanuel, I'd recommend checking your DSpace logs then after running the Restore command. It's possible an error is being reported in the logs. For more info on this see https://wiki.duraspace.org/display/DSPACE/Troubleshoot+an+error - Tim On 5/12/2015 11:36 PM, Emmanuel Wilson wrote:

Re: [Dspace-tech] OAI Server error

2015-05-13 Thread Claudia Jürgen
Hello, the https://digitum.um.es/oai/request gives the correct answer illegal verb as the verb is missing trying http://digitum.um.es/oai/request?verb=Identify works too. But note the OAI-PMH requires http see http://www.openarchives.org/OAI/openarchivesprotocol.html#ProtocolFeatures. So for

[Dspace-tech] Multi Document Item Full-Text Indexing

2015-05-13 Thread Pablo Prieto Montes de Oca
Hello, This is the first time I send a question to this mailing-list, I hope some can give me some light on the following issue. As part of a project that I'm managing, we're developing an institutional repository based on DSpace 5.1 which requieres full-text search capabilities. We have

Re: [Dspace-tech] Copy contents from $HOME/.m2 to new system

2015-05-13 Thread Hilton Gibson
Hi Vimal If using Ubuntu, try the following from the machine with the maven repository. *rsync -av /home/dspace/.m2/ dspace@hostname-of-remote-machine:/home/dspace/.m2/* This assumes that there is a dspace user on both machines. The rsync command is a very powerful tool for syncing contents

[Dspace-tech] ERROR org.dspace.app.xmlui.cocoon.DSpaceCocoonServletFilter @ Client closed the connection before file download was complete in file dspace.log

2015-05-13 Thread Johanne Crête
Hi, I am using DSpace 4.1. I found this error in the log file dspace.log : ERROR org.dspace.app.xmlui.cocoon.DSpaceCocoonServletFilter @ Client closed the connection before file download was complete. I can replicate this error by downloading a bitstream file with Internet Explorer. However,

[Dspace-tech] ERROR cocoon.handled - Could not read resource cocoon://DRI/1/handle/xxxxx/xx/xmlworkflow

2015-05-13 Thread Johanne Crête
Hi, I am using DSpace 4.1. I found this error in the log file cocoon.log. I would like to find out what causes this error : 2015-05-07 16:08:10,925 ERROR cocoon.handled - Could not read resource cocoon://DRI/1/handle/x/xxx/xmlworkflow at map:serialize type=xml -

Re: [Dspace-tech] Location of files

2015-05-13 Thread Andrea Schweer
Hi, On 13 May 2015 at 19:43, Vimal Kumar V. vimal0...@gmail.com wrote: Where files are downloding when we execute following command? I mean to which directory. cd /build/dspace-4.1-src-release mvn -U package By default, ~/.m2/repository on Linux or C:\Documents and

Re: [Dspace-tech] access to page spins

2015-05-13 Thread Andrea Schweer
Hi, On 14/05/15 05:24, Jose Blanco wrote: Thanks Tim, What seems to stopping the indexing is that when it encounters an item that has rights other than Anonymous, it fails. I have confirmed this by editing an item it was failing on and making all its access rights anonymous and then it

Re: [Dspace-tech] access to page spins

2015-05-13 Thread Jose Blanco
Tim, one more thing,,, we have Apache Maven 3.0.1 and PostgresSQL 8.4 Do you think this could have something to do with it? On Wed, May 13, 2015 at 3:19 PM, Jose Blanco blan...@umich.edu wrote: Tim, The index completed successfully using: [dspace]/bin/dspace index-discovery -b But the

Re: [Dspace-tech] Batch move item between collections

2015-05-13 Thread Olivier Nicole
Thank you Tim, My guess would be that you may need to reindex. Since you moved the objects manually in the database tables, the browse/search indexes may not be fully aware of the move. Assuming you are using Discovery, you'd likely need to run [dspace]/bin/dspace index-discovery -b

Re: [Dspace-tech] Copy contents from $HOME/.m2 to new system

2015-05-13 Thread Luiz dos Santos
Hi Vimal, Just copy then is not ok, you could even have more than one m2 per machine, you just need setup it properly in maven settings.xml file. !-- localRepository | The path to the local repository maven will use to store artifacts. | | Default: ~/.m2/repository --

[Dspace-tech] Location of files

2015-05-13 Thread Vimal Kumar V.
Dear Friends, Where files are downloding when we execute following command? I mean to which directory. cd /build/dspace-4.1-src-release mvn -U package Regards, -- Vimal Kumar V. Technical Assistant Mahatma Gandhi University Library Kottayam, Kerala- 686 560 Web: http://www.vimalkumar.info Blog:

[Dspace-tech] Could not find the main class: org.dspace.storage.rdbms.DatabaseUtils.

2015-05-13 Thread Vimal Kumar V.
Dear Friends, I got following error while installing Dspace 5 in Ubuntu 12.04. I got this message after executing ant fresh_install command. [java] Could not find the main class: org.dspace.storage.rdbms.DatabaseUtils. Program will exit. BUILD FAILED