[dspace-tech] Re: Configure Creative Commons Step as Required in submission form

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
If this isn't working as you described, then it sounds like there may be a bug in the code. That "mandatory" flag should make the step required when it is set to "true". Please feel free to submit a bug ticket to https://github.com/DSpace/dspace-angular/issues and I'll see if I can find a

[dspace-tech] Re: Get All Items in Specific Collection with API

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi, The REST API documentation is available at https://github.com/DSpace/RestContract To find all the Items in a Collection, you'd use the search endpoint, and pass in the UUID of the collection as the "scope":

[dspace-tech] Re: Cannot fetch workflow groups | DSPACE 7.5

2023-02-24 Thread DSpace Technical Support
Hi, For code reviews, I'd recommend creating a Pull Request in GitHub or linking to code in GitHub. It's very difficult to review code via email. If you are looking to give this code back to DSpace, see our contribution guidelines at https://github.com/DSpace/DSpace/blob/main/CONTRIBUTING.md

[dspace-tech] Re: REST API login not working on DSpace version 7.4 after upgrade from DSpace 6.2

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi, That first screenshot shows the error message as : "405 Only POST is allowed for login requests" That means that you are calling that "/login" method incorrectly and need to use POST. Here's the docs on that endpoint which has some examples:

Re: [dspace-tech] Re: DSpace7 Not accessible via IP Address

2023-02-24 Thread DSpace Technical Support
Hi, I can verify that you *MUST* enable HTTPS on the backend if you want to access the backend via an IP address. Without HTTPS, it's possible the basics will work, but I know that you will not be able to login to the system until you enable HTTPS. It's only possible to (easily) run DSpace

[dspace-tech] Re: External metadata source in the submission form

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi Anis, We have some (higher level) code walkthroughs/examples in the videos/webinars available here: https://wiki.lyrasis.org/display/DSPACE/Videos+and+Webinars The most recent was a developer workshop last year: https://wiki.lyrasis.org/display/DSPACE/2022-11+-+DSpace+7.4+Webinar+Series

[dspace-tech] Re: System-wide Alert error

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi, Please follow our troubleshooting guide to locate the detailed error message behind the scenes. https://wiki.lyrasis.org/display/DSPACE/Troubleshoot+an+error#Troubleshootanerror-DSpace7.x(orabove) The error messages displayed in the User Interface just let you know there was a problem.

[dspace-tech] Re: Statistics data not available

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi, You may want to check your Statistics configuration to ensure it is correct, namely the "solr-statistics.server" setting documented here: https://wiki.lyrasis.org/display/DSDOC7x/SOLR+Statistics#SOLRStatistics-ConfigurationsettingsforStatistics If it is correct, and it's still not

[dspace-tech] Re: DSpace 7 with apache tomcat 10

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi Bill, I am aware that the DSpace backend's "Hal Browser" may not work properly in Tomcat 10: https://github.com/DSpace/DSpace/issues/8173 That's something I'm hoping we'll get solved in 7.6. It is possible though that the backend *works* it's just that this browser (which is more of

Re: [dspace-tech] ANNOUNCEMENT: DSpace 7 nearing feature completion. Planning for 8.0 will begin in 2023

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hello, Sorry for your disappointment. Our community is made of volunteers, and many of those volunteers have been busy of the last 2 weeks finishing up the 7.5 release (finished & announced on Feb 20). Questions on the lists will get answered, but when our volunteer helpers are busy with a

[dspace-tech] Re: DSpace REST API access denied

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi, My general advice when learning about the REST API is to do the following: * First, look in the REST API documentation at https://github.com/DSpace/RestContract/ for related documentation. * If you cannot find the endpoint that is used, you can *discover it* easily by using the User

Re: [dspace-tech] Re: Excluding metadata from browse and search result - dspace 7.3

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi, In case you haven't figured it out yet, I think the setting you are looking for is this one: https://github.com/DSpace/DSpace/blob/main/dspace/config/spring/api/discovery.xml#L2421 You likely need to comment out the "dc.contributor.author" field from that "author" index and *reindex* your

[dspace-tech] Re: Got an error when to Approve a submission

2023-02-24 Thread DSpace Technical Support
Hi, In DSpace 6, an "Internal System Error" means that you need to check the logs on the backend to determine the cause of the error. See this troubleshooting guide for DSpace 6: https://wiki.lyrasis.org/display/DSPACE/Troubleshoot+an+error#Troubleshootanerror-DSpace6.xorbelow Once you've

[dspace-tech] Re: DSpace7 Not accessible on IP Address

2023-02-24 Thread 'Tim Donohue' via DSpace Technical Support
Hi, If you are still getting this 500 error, there's a guide for solving it in our "Common Installation Issues" section: https://wiki.lyrasis.org/display/DSDOC7x/Installing+DSpace#InstallingDSpace-CommonInstallationIssues It usually means there's a misconfiguration between your backend

[dspace-tech] Configure Creative Commons Step as Required in submission form

2023-02-24 Thread WILLIAN
Hi, I need the Creative Commons step to be required in submission process. I tried changing "mandatory" to "true" in step definitions (item-submission.xml) but it didn't work. ... Is there any configuration for this? Thanks -- -- All messages to this mailing

[dspace-tech] Get All Items in Specific Collection with API

2023-02-24 Thread badak afrika
I'm trying to get all the items in a collection using the endpoint of the Rest-API on Dspace 7. I've looked at the Rest-API documentation on github but I can't find it. I think in Dspace 6 a user can get all the items in a collection using the /collections/{collectionId}/items endpoint, then

Re: [dspace-tech] Creating Submission Workflows

2023-02-24 Thread Mark H. Wood
On Thu, Feb 23, 2023 at 08:30:46PM +, Cameron, Jacob wrote: > Does this also apply to a community, not just an item? We have some > communities that are also added for some reason. The code in SubmissionConfigReader looks up a DSpaceObject by Handle and specifically casts it to Collection.

[dspace-tech] Cannot fetch workflow groups | DSPACE 7.5

2023-02-24 Thread Aman Budgujar
I am trying to delete all the workflow groups of a collection when the collection itself is deleted but I am unable to fetch any workflow group of any collection. Kindly, review my code. My modified code is from line 803 to 807. I have attached the file below. Original code can be found at the

Re: [dspace-tech] Re: DSpace7 Not accessible via IP Address

2023-02-24 Thread 'Agustín Alfieri' via DSpace Technical Support
I'm not part of the Dspace development team, just a user. So I'm not *sure *that you need to enable the https support but I believe is the right direction to fix the problem. Regarding the logs, I'll try to help you as much as I can if you send them. The paths for the logs are on this link