[dspace-tech] Re: opensaml::BindingException Invalid HTTP method (GET)

2019-04-03 Thread Bryson Duda
For the benefit of anyone else that has a strange setup like ours and is running into the same problem, we were able to get Shibboleth authentication working with the following settings: *local.cfg* authentication-shibboleth.lazysession.secure = true Prepend https to the "authentication-shibbole

Re: [dspace-tech] DSpace URL

2019-04-03 Thread Arlon FNDE
Thank you for the clarification. Arlon. On Wed, Apr 3, 2019 at 11:02 AM Tim Donohue wrote: > Hi Arlon, > > Yes, every version of DSpace (back to 1.x) supports whatever URL pattern > you choose to define in your Tomcat/Apache configurations. DSpace has > always been completely agnostic to the U

Re: [dspace-tech] DSpace URL

2019-04-03 Thread Tim Donohue
Hi Arlon, Yes, every version of DSpace (back to 1.x) supports whatever URL pattern you choose to define in your Tomcat/Apache configurations. DSpace has always been completely agnostic to the URL defined in Tomcat/Apache, and it just requires that you set the URL in the "dspace.url" configuration

[dspace-tech] Sword Authentication

2019-04-03 Thread Shaun donovan
Hi all. I have written a SAML / ADFS authentication module, and have been able to implement it successfully for DSpace, but this leaves me with a problem when it comes to Sword authentication. Due to the nature of SAML / ADFS, one is transferred to the ADFS server to be authenticated, and onl

Re: [dspace-tech] Securing Solr from public on Tomcat 8

2019-04-03 Thread Alan Orth
Dear Jaware, You would want to add a requirement that requests to the solr application come from localhost aka 127.0.0.1. Add something like this to your VirtualHost in Apache HTTPD: Require ip 127.0.0.0/8 ... Regards, On Tue, Mar 26, 2019 at 9:59 AM Paul Münch wrote: >

[dspace-tech] Re: Modifying metadata export csv header

2019-04-03 Thread Mark H. Wood
On Wednesday, April 3, 2019 at 3:11:58 AM UTC-4, Arunendra M. Biswas wrote: > > Is there a way to customize the header in the csv generated during > metadata export (JSPUI)? > E.g Instead of dc.title,dc.subject[en_US], I want it to be shown as > Title,Subject etc > Additionally, I do not want to

Re: [dspace-tech] DSpace URL

2019-04-03 Thread Arl FNDE
Hello Tim, I'm concerned about integrating with other repositories that use older versions of DSpace. Is this freedom of URL definition also compatible with these versions? Arlon. Em terça-feira, 2 de abril de 2019 12:46:19 UTC-3, Tim Donohue escreveu: > > Hello, > > DSpace requires no specific

Re: [dspace-tech] Multiple templates

2019-04-03 Thread suman gupta
Thanks, I'll check them out. On Wed, 3 Apr 2019, 1:22 pm Claudia Jürgen, wrote: > > Hi Suman, > > "i got an error' provides as with too little information to help you. In > order to get more see > https://wiki.duraspace.org/display/DSPACE/Troubleshoot+an+error > You most like used an unregistere

Re: [dspace-tech] Re: Modifying metadata export csv header

2019-04-03 Thread Claudia Jürgen
Hi, normally Solr is configured to be accessible only on localhost see https://wiki.duraspace.org/display/DSPACE/Solr The csv export from the UI does not use a solr query see https://github.com/DSpace/DSpace/blob/dspace-6_x/dspace-api/src/main/java/org/dspace/app/bulkedit/DSpaceCSV.java#L407 Ho

[dspace-tech] Re: Modifying metadata export csv header

2019-04-03 Thread Arunendra M. Biswas
This solr search query- is it available from Dspace UI?Because, one client showed me an example of such csv which was possibly generated on clicking Export Metadata button. If I could just access the query that runs behind this Export Metadata button, wouldn't I be able to modify it? On Wednesd

Re: [dspace-tech] Multiple templates

2019-04-03 Thread Claudia Jürgen
Hi Suman, "i got an error' provides as with too little information to help you. In order to get more see https://wiki.duraspace.org/display/DSPACE/Troubleshoot+an+error You most like used an unregistered field or made the input-forms.xml and invalid xml by some syntactical mistake. Basically y

Re: [dspace-tech] Modifying metadata export csv header

2019-04-03 Thread Claudia Jürgen
Hi, solr is used by both xmlui and jspui for the discovery, authority and statistics. Without solr dspace would not run, so you have it already running. Hope this helps Claudia Jürgen Am 03.04.2019 um 09:38 schrieb suman gupta: M working on xmlui On Wed, 3 Apr 2019, 1:07 pm Claudia Jürgen,

Re: [dspace-tech] Modifying metadata export csv header

2019-04-03 Thread Claudia Jürgen
Hello, as far as I know this is not configurable. You may consider a solr search query with csv output using an alias for columns q=search.resourcetype:2 fl=Title:dc.title,Subject:dc.subject ... wt=csv Hope this helps Claudia Jürgen Am 03.04.2019 um 09:08 schrieb Arunendra M. Biswas: Is ther

Re: [dspace-tech] Multiple templates

2019-04-03 Thread Claudia Jürgen
Hello Suman, yes this is possible you can define different input forms and assign them to specific collections see https://wiki.duraspace.org/display/DSDOC6x/Submission+User+Interface#SubmissionUserInterface-AddingaCollectionMap Hope this helps Claudia Jürgen Am 03.04.2019 um 08:20 schrieb

[dspace-tech] Multiple templates

2019-04-03 Thread suman gupta
I have installed dspace package on virtual server(ubuntu) I have a query regarding collection part in dspace. During submission part i want particular field in collection part but when i add in xml file it will reflect in all collections during submission. My question is Is it possible to add p

[dspace-tech] Modifying metadata export csv header

2019-04-03 Thread Arunendra M. Biswas
Is there a way to customize the header in the csv generated during metadata export (JSPUI)? E.g Instead of dc.title,dc.subject[en_US], I want it to be shown as Title,Subject etc Additionally, I do not want to export all the fields in the csv, but I have input during metadata entry.How do I do so