[Dspace-tech] Export collections

2015-04-11 Thread Stefanie Behnke
Dear all,

we are using dspace 3.1 with xmlui. As administrator I can export
collections using the xmlui interface.
Is there a possibility to give the right to export a collection to e-persons
or groups without giving them the whole admin rights for this collection?

Thanking you in advance
Stefanie


--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


[Dspace-tech] OAI9 poster submission deadline

2015-04-11 Thread Thomas Krichel

  The OAI Workshop on Current Developments in Scholarly Communication
  is being held in the University of Geneva on 17-19 June 2015. It has
  a call for posters. The deadline is 17 April 2015. See
  http://indico.cern.ch/event/332370/page/6 for more details.

  The Workshop will contain 6 plenary session, focussing on the
  following topics:

   1. A Technical Open Access/Open Science session led by Herbert Van de Sompel

   2. Barriers and Impact

   3. Open Science Workflows: CHORUS and SHARE

   4. Quality Assurance

   5. Institution as Publisher

   6. Digital Curation and preservation of large and complex scientific objects

  Use https://indico.cern.ch/event/332370/registration/ to register.


  Cheers,

  Thomas Krichel  http://openlib.org/home/krichel
  skype:thomaskrichel

--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Turning SSL on with self-signed certificate breaks solr functionality

2015-04-11 Thread helix84
On Thu, Apr 9, 2015 at 5:10 PM, Chris Gray  wrote:

> We're using DSpace 5.1 and when we turn on SSL as per the instructions
> in the installation documentation then browsing and RSS feeds break.
>
> Looking at the localhost access logs it looks like requests to solr on
> 127.0.0.1 return a 302 status rather than 200.
>

If you're forcing HTTPS and redirects are causing problems, why don't you
configure DSpace to talk to Solr via HTTPS?

server=https://localhost:8080/solr/statistics in [dspace]/config/modules/
solr-statistics.cfg.
solr.url=https://localhost:8080/solr/oai in [dspace]/config/modules/oai.cfg
and
search.server=https://localhost:8080/solr/search in [dspace]/config/modules/
discovery.cfg
All of these can be changed at once at build time by changing
solr.server=https://localhost:8080/solr in [dspace-source]/build.properties


> Using wget from the command line I'm told I need to add the
> --no-check-certificate parameter.
>

All works as expected here, tools like wget and curl want you to explicitly
acknowledge that you want to skip certificate chain validation. If you're
using these often, make an alias:
alias wget='wget --no-check-certificate'


> Is there a way to have tomcat7 force 8080 traffic to 8443 only for the
> hostname and public IP address and not for localhost and 127.0.0.1?
>

I just did some research and I don't think Tomcat can do this on its own.
1) You can only have a single  in configuration per Tomcat instance
as it's the application (Tomcat) as a whole which binds to an IP/port
2)  isn't helpful here, either
3) you can't  (which forces the redirect) twice with the same
port number

Since you're using 8080, this probably means you're running a web server as
a frontend to Tomcat, you could take care of it there as Stuart suggests.

Another solution would be to have another Connector on another port number
which doesn't force the redirect to HTTPS. While you can't disallow
non-localhost access to this in Tomcat (due to 1) above), you could
restrict it using iptables or other methods.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette