[Dspace-tech] Trusted Repositories ?

2013-01-17 Thread Lewatle Phaladi
Complements of the new year to everybody,

I have question that I would like to share with you guys in case there is 
somebody knowing the answer, I would like to know who issues Trusted Repository 
Certificate, name of institution or their URL
For example in case of SSL there is several institution that are responsible to 
issue and manage SSL, but in this case I would like to know who is responsible 
for issuing Trusted Repository Certificate.

Regards,
Lewatle


htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread marco . weiss
Hi all,

is it possible to perform an get request on the OAI interface and  
using not the handle as identifier?
Can i use a field from the metadata scheme like dc.contributor.author?

For example that is a working request

http://10.2.46.252:8080/oai/request?verb=GetRecordmetadataPrefix=oai_dcidentifier=oai:urntest:123456789/7

and i want to do a search like

http://10.2.46.252:8080/oai/request?verb=GetRecordmetadataPrefix=oai_dcidentifier=oai:urntest:dc.contributor.author=Goethe


Maybe it is possible to tell DSpace what field of the metadata is used  
for identify the record?


Regards Marco



--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread helix84
On Thu, Jan 17, 2013 at 9:37 AM,  marco.we...@kesslernetworks.de wrote:
 is it possible to perform an get request on the OAI interface and
 using not the handle as identifier?
 Can i use a field from the metadata scheme like dc.contributor.author?

I'm reading the Unique Identifier chapter of the OAI-PMH specification
and it I don't think it explicitly says that there couldn't be
multiple unique identifiers pointing to the same record. But they do
have to be unique, so dc.contributor.author is out of the question.
The OAI in DSpace probably could be adapted to allow multiple
identifier schemas is you really wanted to, but I don't think it's a
good idea at all.

OTOH, if you don't need to conform to OAI-PMH, you just need a search
interface, you can just search for any metadata via Solr [1], which
uses really a simple, XML-based protocol (among other options). Of
course, that way by searching for a value of a metadata field (like
author) you can find the handles and still use OAI-PMH to access those
handles, if you wish. Yet another alternative is SRU/SRW, but I don't
recommend it at this time because it's implemented as an addon (i.e.
not part of standard DSpace) and it's SQL-, not Solr-based (i.e.
relatively slow).

[1] https://wiki.duraspace.org/display/DSPACE/Solr


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread marco . weiss
Hi Helix,

ok dc.contributor.author was a bad example. In this case we have a  
UUID that is unique and i can import it in a field named  
dc.identifier.uuid.
So how can i modify DSpace to allow multiple identifier?

I asked this because i had only this idea to get the record i need.  
Maybe if i explain to you what i'd like to do, you have an other idea  
i don't thought about.

I'd like to get the meta data record from a system/website that knows  
nothing from the handles in DSpace.
But the systems knows the UUID!
So if i maintain the UUID in DSpace as dc.identifier.uuid too both  
systems know about the UUID and can match the entries.


Regards, Marco




Zitat von helix84 heli...@centrum.sk:

 On Thu, Jan 17, 2013 at 9:37 AM,  marco.we...@kesslernetworks.de wrote:
 is it possible to perform an get request on the OAI interface and
 using not the handle as identifier?
 Can i use a field from the metadata scheme like dc.contributor.author?

 I'm reading the Unique Identifier chapter of the OAI-PMH specification
 and it I don't think it explicitly says that there couldn't be
 multiple unique identifiers pointing to the same record. But they do
 have to be unique, so dc.contributor.author is out of the question.
 The OAI in DSpace probably could be adapted to allow multiple
 identifier schemas is you really wanted to, but I don't think it's a
 good idea at all.

 OTOH, if you don't need to conform to OAI-PMH, you just need a search
 interface, you can just search for any metadata via Solr [1], which
 uses really a simple, XML-based protocol (among other options). Of
 course, that way by searching for a value of a metadata field (like
 author) you can find the handles and still use OAI-PMH to access those
 handles, if you wish. Yet another alternative is SRU/SRW, but I don't
 recommend it at this time because it's implemented as an addon (i.e.
 not part of standard DSpace) and it's SQL-, not Solr-based (i.e.
 relatively slow).

 [1] https://wiki.duraspace.org/display/DSPACE/Solr


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette




--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread helix84
That sounds like a valid use case. I think it might be easy:

https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-oai/src/main/java/org/dspace/xoai/data/DSpaceItem.java#L67


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread Hilton Gibson
Also see: http://hdl.handle.net/10019.1/3161



On 17 January 2013 11:37, helix84 heli...@centrum.sk wrote:

 That sounds like a valid use case. I think it might be easy:


 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-oai/src/main/java/org/dspace/xoai/data/DSpaceItem.java#L67


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


 --
 Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
 MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
 with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
 MVPs and experts. ON SALE this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122712
 ___
 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




-- 
*Hilton Gibson*
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread marco . weiss
Hope i understand you the right way...
The only way to get this working is to expand the code?

Regards, Marco


Zitat von helix84 heli...@centrum.sk:

 That sounds like a valid use case. I think it might be easy:

 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-oai/src/main/java/org/dspace/xoai/data/DSpaceItem.java#L67


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette




--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread helix84
On Thu, Jan 17, 2013 at 11:05 AM,  marco.we...@kesslernetworks.de wrote:
 Hope i understand you the right way...
 The only way to get this working is to expand the code?

Yes, certainly. But it doesn't look hard, unless there's something I missed.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] start-handle-server

2013-01-17 Thread cotanio
Hi all,

I'm trying to launch the handle server via the command start-handle-server
on a Linux server with the 1.5.2 version of dspace and I get the following
exception:

Caused by: java.lang.ClassNotFoundException:
org.dspace.core.ConfigurationManager
 at java.net.URLClassLoader $ 1.run (URLClassLoader.java: 200)
 at java.security.AccessController.doPrivileged (Native Method)
 at java.net.URLClassLoader.findClass (URLClassLoader.java: 188)
 at java.lang.ClassLoader.loadClass (ClassLoader.java: 307)
 at sun.misc.Launcher $ AppClassLoader.loadClass (Launcher.java:
301)
 at java.lang.ClassLoader.loadClass (ClassLoader.java: 252)
 at java.lang.ClassLoader.loadClassInternal (ClassLoader.java: 320)
Could not find the main class: org.dspace.core.ConfigurationManager. Program
wi
Exception in thread main java.lang.NoClassDefFoundError: org / dspace /
core / Confi
Caused by: java.lang.ClassNotFoundException:
org.dspace.core.ConfigurationManager
 at java.net.URLClassLoader $ 1.run (URLClassLoader.java: 200)
 at java.security.AccessController.doPrivileged (Native Method)
 at java.net.URLClassLoader.findClass (URLClassLoader.java: 188)
 at java.lang.ClassLoader.loadClass (ClassLoader.java: 307)
 at sun.misc.Launcher $ AppClassLoader.loadClass (Launcher.java:
301)
 at java.lang.ClassLoader.loadClass (ClassLoader.java: 252)
 at java.lang.ClassLoader.loadClassInternal (ClassLoader.java: 320)
Could not find the main class: org.dspace.core.ConfigurationManager. Program
wi


I don't know why you do not see the ConfigurationManager class. Is there any
additional work to be carried out? Should we add a parameter to the file
start-handle-server?

Thanks to all.



--
View this message in context: 
http://dspace.2283337.n4.nabble.com/start-handle-server-tp4661169.html
Sent from the DSpace - Tech mailing list archive at Nabble.com.

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] start-handle-server

2013-01-17 Thread helix84
Hi Cotanio,

you probably don't have the dspace jar files in your classpath that is
used for that command-line script. The directory with the jars is your
[dspace]/lib directory. You can edit the start-handle-server script
and make sure to add this directory to the classpath, separated by a
colon (:).

From what I see in 3.0, this directory is already added to classpath
if you run it from the [dspace]/bin/ directory, so try that first (cd
[dspace]/bin; ./start-handle-server).

BINDIR=`dirname $0`
DSPACEDIR=`cd $BINDIR/.. ; pwd`
JARS=`echo $DSPACEDIR/lib/*.jar | sed 's/ /\:/g'`


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread João Melo
Hi marco,

if you are using DSpace 3.0, it's also possible do the same with filters
which don't require code changes, only configuration changes.


On 17 January 2013 10:05, marco.we...@kesslernetworks.de wrote:

 Hope i understand you the right way...
 The only way to get this working is to expand the code?

 Regards, Marco


 Zitat von helix84 heli...@centrum.sk:

  That sounds like a valid use case. I think it might be easy:
 
 
 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-oai/src/main/java/org/dspace/xoai/data/DSpaceItem.java#L67
 
 
  Regards,
  ~~helix84
 
  Compulsory reading: DSpace Mailing List Etiquette
  https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette





 --
 Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
 MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
 with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
 MVPs and experts. ON SALE this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122712
 ___
 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




-- 
Thanks, João Melo (My Portfolio http://www.lyncode.com/m/jmelo/)
DSpace Department
*Lyncode*: Official
websitehttp://www.google.com/url?q=http%3A%2F%2Fwww.lyncode.com%2Fsa=Dsntz=1usg=AFrqEzdV8iS6rMxflxnn138XReuRfUG3OQ
[image: Follow us on
Facebook]http://www.google.com/url?q=http%3A%2F%2Ftwitter.com%2Flyncodesa=Dsntz=1usg=AFrqEzeDuT3ZqMW5uVIA8AoxtTtAeiCX3Q
http://www.google.com/url?q=http%3A%2F%2Fwww.facebook.com%2Flyncodesa=Dsntz=1usg=AFrqEzcWXjHa3gKBGLsNVxktapxkiWDnww
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread marco . weiss
 

Hi Joao, 

yes we are using DSpace 3.0. Can you provide me a hint
where i can find a documentation of these filters? 

Or do you mean the
media filters? 

Regards, Marco 

Am 17.01.2013 12:40, schrieb João
Melo: 

 Hi marco, 
 
 if you are using DSpace 3.0, it's also
possible do the same with filters which don't require code changes, only
configuration changes. 
 
 On 17 January 2013 10:05,
marco.we...@kesslernetworks.de wrote:
 
 Hope i understand you the
right way...
 The only way to get this working is to expand the
code?
 
 Regards, Marco
 
 Zitat von helix84
heli...@centrum.sk:
 
 That sounds like a valid use case. I think
it might be easy:
 
 
https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-oai/src/main/java/org/dspace/xoai/data/DSpaceItem.java#L67
[1]
 
 
  Regards,
  ~~helix84
 
  Compulsory
reading: DSpace Mailing List Etiquette
 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette [2]



--

Master Visual Studio, SharePoint, SQL, ASP.NET [3], C# 2012, HTML5,
CSS,
 MVC, Windows 8 Apps, JavaScript and much more. Keep your skills
current
 with LearnDevNow - 3,200 step-by-step video tutorials by
Microsoft
 MVPs and experts. ON SALE this month only -- learn more
at:
 http://p.sf.net/sfu/learnmore_122712 [4]

___
 DSpace-tech mailing
list
 DSpace-tech@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/dspace-tech [5]
 List
Etiquette:
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette [2]


 -- 
 
 Thanks, João Melo (My Portfolio [6])
 DSpace Department

LYNCODE: Official website [7] 
 [8] 
 [9]

 

Links:
--
[1]
https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-oai/src/main/java/org/dspace/xoai/data/DSpaceItem.java#L67
[2]
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
[3]
http://ASP.NET
[4] http://p.sf.net/sfu/learnmore_122712
[5]
https://lists.sourceforge.net/lists/listinfo/dspace-tech
[6]
http://www.lyncode.com/m/jmelo/
[7]
http://www.google.com/url?q=http%3A%2F%2Fwww.lyncode.com%2Famp;sa=Damp;sntz=1amp;usg=AFrqEzdV8iS6rMxflxnn138XReuRfUG3OQ
[8]
http://www.google.com/url?q=http%3A%2F%2Ftwitter.com%2Flyncodeamp;sa=Damp;sntz=1amp;usg=AFrqEzeDuT3ZqMW5uVIA8AoxtTtAeiCX3Q
[9]
http://www.google.com/url?q=http%3A%2F%2Fwww.facebook.com%2Flyncodeamp;sa=Damp;sntz=1amp;usg=AFrqEzcWXjHa3gKBGLsNVxktapxkiWDnww
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
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] LDAP Authentication (Hierarchical) - Dspace 3.0 (No DN found for user)

2013-01-17 Thread mErRYo
Hi, I am using Dspace 3.0 jspui with two authentication mechanism i.e. password 
base and ldap base. My password is working fine but my ldap is throwing me 
warning that No DN found for user. I checked my dspace log and there is no 
other exception. See my log details below:

*
2013-01-17 17:03:32,196 INFO  org.dspace.authenticate.PasswordAuthentication @ 
anonymous:session_id=BB57212BD7445A506852117C01FC7F34:ip_addr=myclientip:authenticate:attempting
 password auth of user=myu...@abc.com
2013-01-17 17:03:32,196 DEBUG org.dspace.storage.rdbms.DatabaseManager @ 
Running query select * from eperson where email = ?   with parameters: 
myu...@abc.com
2013-01-17 17:03:32,290 INFO  
org.dspace.authenticate.LDAPHierarchicalAuthentication @ 
anonymous:session_id=BB57212BD7445A506852117C01FC7F34:ip_addr=myclientip:auth:attempting
 trivial auth of user=myu...@abc.com
2013-01-17 17:03:32,290 DEBUG org.dspace.storage.rdbms.DatabaseManager @ 
Running query select * from eperson where netid = ?   with parameters: 
myu...@abc.com
2013-01-17 17:03:32,321 INFO  
org.dspace.authenticate.LDAPHierarchicalAuthentication @ 
anonymous:session_id=BB57212BD7445A506852117C01FC7F34:ip_addr=myclientip:failed_login:no
 DN found for user myu...@abc.com
2013-01-17 17:03:32,321 INFO  org.dspace.app.webui.servlet.PasswordServlet @ 
anonymous:session_id=BB57212BD7445A506852117C01FC7F34:ip_addr=myclientip:failed_login:email=myu...@abc.com,
 result=2
2013-01-17 17:03:32,321 DEBUG org.dspace.app.webui.util.JSPManager @ 
anonymous:session_id=BB57212BD7445A506852117C01FC7F34:ip_addr=myclientip:view_jsp:/login/incorrect.jsp
**

my authentication-ldap.cfg details are as follows:

enable = true

# LDAP AutoRegister Settings #
autoregister = false
provider_url = ldap://serverip:389/
id_field = cn
object_context = cn=users,DC=abc,DC=com
search_context = cn=users,DC=abc,DC=com
email_field = mail
surname_field = sn
givenname_field = givenName
phone_field = telephoneNumber

#login.specialgroup = group-name
# Hierarchical LDAP Settings #

search_scope = 2
# search.anonymous = false
search.user = cn=administrator,cn=users,dc=abc,dc=com
search.password = mypass

#netid_email_domain = @example.com

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] [KE1019161] Get record from OAI with a individual identifier

2013-01-17 Thread helix84
On Thu, Jan 17, 2013 at 1:18 PM, marco.we...@kesslernetworks.de wrote:
 yes we are using DSpace 3.0. Can you provide me a hint where i can find a 
 documentation of these filters?

The filters Joao meant are defined and used here:

https://github.com/DSpace/DSpace/blob/dspace-3.0/dspace/config/crosswalks/oai/xoai.xml

I don't know how they allow you to change what identifiers are
_accepted_ by oai without writing Java code, but of course Joao knows
better, he wrote the code.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] LDAP Authentication (Hierarchical) - Dspace 3.0 (No DN found for user)

2013-01-17 Thread helix84
The first strange thing from the get-go is that
LDAPHierarchicalAuthentication which you're using is no longer in
DSpace 3.0, its functionality has been integrated into
LDAPAuthentication. So you probably used the old class with the new
code. This should work, assuming you compiled it
(LDAPHierarchicalAuthentication.java) in the new codebase. If you
decide to go use the new LDAPAuthentication class, you should set
search.anonymous = false (I'm not sure what the default is if it's not
set).

About no DN found for user - this is printed when the admin user's
DN cannot be found in the LDAP directory. This means that either
search.user/search.password is wrong or connection to LDAP couldn't be
established (provider_url et al).

Try the new LDAPAuthentication class first. Details are in the upgrading notes.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] Dspace upgradation 1.8 to 3.0 Error: log4j:WARN Please initialize the log4j system properly

2013-01-17 Thread praba
Hi,

I am testing the
Dspace upgradation 1.8 to 3.0, I have done all the procedure to upgrade the
version and restarted the tomcat and getting the following error,

Jan 16, 2013 4:16:09 PM
org.apache.coyote.http11.Http11AprProtocol init

INFO: Initializing Coyote HTTP/1.1 on
http-8080

Jan 16, 2013 4:16:10 PM
org.apache.coyote.ajp.AjpAprProtocol init

INFO: Initializing Coyote AJP/1.3 on
ajp-8009

Jan 16, 2013 4:16:10 PM
org.apache.catalina.startup.Catalina load

INFO: Initialization processed in 992
ms

Jan 16, 2013 4:16:10 PM
org.apache.catalina.core.StandardService start

INFO: Starting service Catalina

Jan 16, 2013 4:16:10 PM
org.apache.catalina.core.StandardEngine start

INFO: Starting Servlet Engine: Apache
Tomcat/5.5.26

Jan 16, 2013 4:16:10 PM
org.apache.catalina.core.StandardHost start

INFO: XML validation disabled

log4j:WARN No appenders could be found
for logger 

(org.apache.catalina.startup.TldConfig).

log4j:WARN Please initialize the log4j
system properly.

nbsp;

nbsp; Kindly help me to
solve the problem.

nbsp;

With Regards,

P.Prabahar

IIAP, Bangalore 
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
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] Dspace upgradation 1.8 to 3.0 Error: log4j:WARN Please initialize the log4j system properly

2013-01-17 Thread helix84
There's no error in what you posted. Post the full today's tomcat log
(catalina.2013-01-17.log) and dspace log (dspace.log.2013-01-17) as an
attachment.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
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] Dspace upgradation 1.8 to 3.0 Error: log4j:WARN Please initialize the log4j system properly

2013-01-17 Thread Thornton, Susan M. (LARC-B702)[LITES]
We get the following 2 warning messages in our web server log every time we 
start or restart our web server. As a matter of fact, I just restarted our web 
server (we use IPlanet) and voila – there they are. Someone once explained why 
it was appearing and that it benign, but I can’t remember the deails - sorry.  
it doesn’t seem to be affecting anything, so I wouldn’t worry about these 
unless you are having problems writing to your dspace.log or other .log files:

17/Jan/2013:11:32:44

warning

 CORE3283: stderr: log4j:WARN No appenders could be found for logger 
(org.dspace.servicemanager.DSpaceKernelInit).

17/Jan/2013:11:32:44

warning

 CORE3283: stderr: log4j:WARN Please initialize the log4j system properly.



Sue Walker-Thornton
(w):  (757) 864-2368
(m):  (757) 506-9903

From: praba [mailto:prabu...@rediffmail.com]
Sent: Thursday, January 17, 2013 9:38 AM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Dspace upgradation 1.8 to 3.0 Error: log4j:WARN Please 
initialize the log4j system properly

Hi,

I am testing the Dspace upgradation 1.8 to 3.0, I have done all the procedure 
to upgrade the version and restarted the tomcat and getting the following error,
Jan 16, 2013 4:16:09 PM org.apache.coyote.http11.Http11AprProtocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Jan 16, 2013 4:16:10 PM org.apache.coyote.ajp.AjpAprProtocol init
INFO: Initializing Coyote AJP/1.3 on ajp-8009
Jan 16, 2013 4:16:10 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 992 ms
Jan 16, 2013 4:16:10 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Jan 16, 2013 4:16:10 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.26
Jan 16, 2013 4:16:10 PM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
log4j:WARN No appenders could be found for logger
(org.apache.catalina.startup.TldConfig).
log4j:WARN Please initialize the log4j system properly.

  Kindly help me to solve the problem.

With Regards,
P.Prabahar
IIAP, Bangalore


[http://sigads.rediff.com/RealMedia/ads/adstream_nx.ads/www.rediffmail.com/signatureline.htm@Middle]http://sigads.rediff.com/RealMedia/ads/click_nx.ads/www.rediffmail.com/signatureline.htm@Middle?
Catch India as it happens with the Rediff News App. To download it for FREE, 
click 
herehttp://track.rediff.com/click?url=___http://www.rediff.com/newsapp___lnk=signaturenewservice=newsapp
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
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] Trusted Repositories ?

2013-01-17 Thread Lana, Amy
Hi Lewatle,

If you're talking about the Trusted Repositories Audit and Certification (TRAC) 
process, it's a collaborative project of the RLG, U.S. National Archives and 
Records Program, Nestor, and the U.S. Center for Research Libraries (CRL).  
More information about the program and the entities can be found at the 
following sites

http://www.crl.edu/sites/default/files/attachments/pages/trac_0.pdf

http://www.dcc.ac.uk/resources/repository-audit-and-assessment/trustworthy-repositories

Hope this helps.

Best,
Amy


Amy Lana
University of Missouri Libraries
la...@missouri.edu / 573-882-4757
http://mulibraries.missouri.edu 
https://mospace.umsystem.edu  


-Original Message-
From: stadtteilgeschichten.net [mailto:j.ra...@stadtteilgeschichten.net] 
Sent: Thursday, January 17, 2013 9:58 AM
To: DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Trusted Repositories ?

In addition to Hilton's thoughts:

In Germany, there is a national certificat for repositories called DINI 
Certificate 2010 for Document and Publication Services.

You will find some information in English at 
http://www.dini.de/dini-zertifikat/english/


Best regards

Joachim

_

stadtteilgeschichten.net
The Citizen's Archive for Neighborhood Histories _

Am 17.01.2013 um 09:51 schrieb Hilton Gibson:

 Hi Lewatle
 
 This probably belongs on the general mailing list.
 But I have some thoughts here: http://bit.ly/garpir As far as I know, 
 a system of certification of repositories has not yet been implemented.
 The big question is: Who would own such an authority? IFLA perhaps or UNESCO?
 Everybody thoughts about this are welcome.
 One issue I can think of now, is what standards do we apply, especially for 
 infrastructure - my pet peeve.
 
 Cheers
 
 hg
 
 
 
 On 17 January 2013 10:14, Lewatle Phaladi lewatle.phal...@wits.ac.za wrote:
 Complements of the new year to everybody,
 
  
 
 I have question that I would like to share with you guys in case there 
 is somebody knowing the answer, I would like to know who issues 
 Trusted Repository Certificate, name of institution or their URL
 
 For example in case of SSL there is several institution that are responsible 
 to issue and manage SSL, but in this case I would like to know who is 
 responsible for issuing Trusted Repository Certificate.
 
  
 
 Regards,
 
 Lewatle
 
  
 
 This communication is intended for the addressee only. It is confidential. If 
 you have received this communication in error, please notify us immediately 
 and destroy the original message. You may not copy or disseminate this 
 communication without the permission of the University. Only authorized 
 signatories are competent to enter into agreements on behalf of the 
 University and recipients are thus advised that the content of this message 
 may not be legally binding on the University and may contain the personal 
 views and opinions of the author, which are not necessarily the views and 
 opinions of The University of the Witwatersrand, Johannesburg. All agreements 
 between the University and outsiders are subject to South African Law unless 
 the University agrees in writing to the contrary.
 
 
 
 --
  Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, 
 HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your 
 skills current with LearnDevNow - 3,200 step-by-step video tutorials 
 by Microsoft MVPs and experts. ON SALE this month only -- learn more 
 at:
 http://p.sf.net/sfu/learnmore_122712
 ___
 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
 
 
 
 --
 Hilton Gibson
 Systems Administrator
 JS Gericke Library
 Room 1025D
 Stellenbosch University
 Private Bag X5036
 Stellenbosch
 7599
 South Africa
 
 Tel: +27 21 808 4100 | Cell: +27 84 646 4758 http://library.sun.ac.za 
 http://scholar.sun.ac.za http://ar1.sun.ac.za http://aj1.sun.ac.za
 --
  Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, 
 HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your 
 skills current with LearnDevNow - 3,200 step-by-step video tutorials 
 by Microsoft MVPs and experts. ON SALE this month only -- learn more 
 at:
 http://p.sf.net/sfu/learnmore_122712__
 _
 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


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, 
Windows 8 Apps, JavaScript 

[Dspace-tech] How customize v 3.0 Discovery search filter drop-down labels

2013-01-17 Thread Charles Kinney
A small thing:  how do I customize the labels displayed in the drop-down
list in Advanced Search?  The search indexes themselves are OK; I would
like to change at least Subject in the current list of: Title, Author,
Subject, Date issued.

Thanks.

*Environment:*
OS:Mac OS X 10.7.5 (Lion)
DSpace:3.0
Interface: XMLUI Mirage (Discovery enabled)
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712___
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] DSpace as an authority control for authors

2013-01-17 Thread Nemiz, Elvi
Hello helix,

Thanks for your response. I would like to know if how can I make our
repository as an authority file, specifically I want to use SampleAuthority
plugin to lookup to existing names with authority. If it's not that
complicated, where would I put your suggested sql query in
SampleAuthority.java if ever I want to use it as the basis for my name
authority plugin?

Thanks in advance and regards,
Elvi

On Thu, Jan 3, 2013 at 10:57 PM, helix84 heli...@centrum.sk wrote:

 On Fri, Dec 28, 2012 at 7:40 AM, Nemiz, Elvi esne...@seafdec.org.ph
 wrote:
  Previously I used LCName authority plugin to lookup and to make the
 authors
  authority-controlled. I edited some authority keys since it shows up in
  sidebar facets and browse by authors pages. If I don't want to use LCName
  plugin anymore, and instead want to lookup to existing authors that have
  already an authority key, how can I achieve this? Did anybody somehow
  modified the existing SampleAuthority plugin to get it to lookup existing
  values from the DSpace database? Would it still be possible if I'm using
  SolrBrowseDAO in my Browse Configuration instead of the default? I'm
 using
  dspace 3.0, xmlui with discovery enabled.  Thanks in advance.

 Hi Elvi,

 you could do this:

 SELECT * FROM metadatavalueWHERE authority IS NOT NULL


 or if you want to leave out duplicate authors, do this:

 SELECT DISTINCT authority, confidence, text_value FROM metadatavalueWHERE 
 authority IS NOT NULL



 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812___
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] DSpace as an authority control for authors

2013-01-17 Thread Andrea Schweer
Hi Elvi,

On 18/01/13 16:19, Nemiz, Elvi wrote:

 Thanks for your response. I would like to know if how can I make our
 repository as an authority file, specifically I want to use
 SampleAuthority plugin to lookup to existing names with authority. If
 it's not that complicated, where would I put your suggested sql query
 in SampleAuthority.java if ever I want to use it as the basis for my
 name authority plugin?

Like SampleAuthority, your plugin would need to implement the three
methods from ChoiceAuthority: getMatches, getBestMatch and getLabel.
There is quite a lot of documentation about the expected behaviour of
these methods in ChoiceAuthority.java:
https://github.com/DSpace/DSpace/blob/master/dspace-api/src/main/java/org/dspace/content/authority/ChoiceAuthority.java

helix's query just gives you all metadata values where there already is
an authority key. This might be a candidate for getMatches, but of
course it wouldn't compare the name you're about to add to things in the
database. The getMatches method has access to the metadata field
(parameter field) and to the value that is to be looked up (parameter
text), so you could use these to refine the SQL query, eg by looking
up metadata values only in that metadata field and/or only values that
are similar to the value that is to be looked up.

So you'll need to build your SQL query as needed and then invoke it
using one of the query methods in DatabaseManager. You'll then need to
iterate over the results and build a Choice instance for each so your
method can return a Choices instance.

For getBestMatch, you could mimic getBestMatch in SampleAuthority and
just return the first one for starters.

For getLabel, which is used when browsing publications for a given
author, you need to do a reverse lookup, which is a bit more
complicated. But if you use SolrBrowseDAO anyway then this method may
not even get used. For starters, you can always just return the key
parameter that was passed into the method.

 Would it still be possible if I'm using SolrBrowseDAO in my Browse
 Configuration instead of the default? I'm using dspace 3.0, xmlui with
 discovery enabled.  

The above should still work; however as far as I know, discovery and the
solr stats completely ignore all authority keys and use the text values
instead. So you won't get all the benefits of name authority.

cheers,
Andrea

-- 
Dr Andrea Schweer
IRR Technical Specialist, ITS Information Systems
The University of Waikato, Hamilton, New Zealand


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
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