Hi Alan,

Configure your oaicat.properties with:
Crosswalks.didl=org.dspace.app.oai.DIDLCrosswalk

Uncomment the |oai.didl.maxresponse| item in |dspace.cfg
|
That's all you need to do (plus restart Tomcat) to expose DIDL packages, 
using metadataPrefix=didl

Verify the Crosswalk is activated by accessing a URL such as 
|http://mydspace/dspace-oai/request?verb=ListRecords&metadataPrefix=didl
|
There is a section in the Configuration section of the 1.4.1 document 
that covers this (under the Activating Additional OAI-PMH Crosswalks 
section <cid:[email protected]>) that you should also 
take a look at.

Scott.

> Date: Mon, 19 Mar 2007 17:26:16 -0700
> From: "Cornish, Alan K" <[EMAIL PROTECTED]>
> Subject: [Dspace-tech] dspace repositories: exposing MPEG-21 DIDL
>       metadata        using OAI-PMH?
> To: <[email protected]>
> Message-ID:
>       <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="us-ascii"
>
> My site recently upgraded its DSpace instances to 1.4.1.  The DSpace 1.4
> release info (URL
> http://mailman.mit.edu/pipermail/dspace-general/2006-July/001064.html)
> indicates that it's possible to "expose METS and MPEG-21 DIDL DIPs via
> OAI-PMH."  At my site, we have been testing both mets and didl.
> Retrieving mets records using OAI-PMH verbs has been working well.
> However, I've been unable to retrieve records using didl.  I'm
> interested in communicating with staff or techs at a DSpace site that
> has successfully exposed DSpace didl metadata using OAI-PMH.  What steps
> were needed to expose records in this extended format?    
>
>  
>
>  
>
> Any info would be appreciated, thanks!
>
> Al Cornish
>
> Head, Library Systems
>
> Washington State University Libraries
>
> Pullman, WA  99164-5610
>
>  
>
> 509.335.1895 (voice)
>
> [EMAIL PROTECTED] (e-mail)
>
>  
>
>  
>
>  
>
>  
>
>         
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
>
> ------------------------------
>
> Message: 4
> Date: Tue, 20 Mar 2007 13:08:12 +0100
> From: [EMAIL PROTECTED]
> Subject: [Dspace-tech] Cataloguing web resources
> To: [email protected]
> Message-ID:
>       <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hallo,
> I would like to know if it is possible with DSpace to catalogue web
> resources (links to web pages or other digital resources). Essentially
> I need to catalogue URLs without having to upload files.
> I know that an instrument dedicated to this purpose is Scout Portal
> Toolkit (http://scout.wisc.edu/Projects/SPT/), but I'm interested also
> in classifying other documents too.
> Anyone knows how or if it's possible with DSpace?
>
> Thanks,
> Mauro
>
>
>
> ------------------------------
>
> Message: 5
> Date: Tue, 20 Mar 2007 12:41:54 +0000
> From: "orlando carvalho" <[EMAIL PROTECTED]>
> Subject: [Dspace-tech] using SRW client on Dspace
> To: [email protected]
> Message-ID:
>       <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi there!
> We put an SRW client working properly!
> ######################################################
> import java.net.*;
> import org.apache.axis.*;
> import gov.loc.www.zing.srw.SearchRetrieveRequestType;
> import gov.loc.www.zing.srw.SearchRetrieveResponseType;
> import gov.loc.www.zing.srw.interfaces.SRWPort;
> import gov.loc.www.zing.srw.srw_sample_service.SRWSampleServiceLocator;
>
> /*
>  * Created on 8/Mar/2007
>  *
>  * To change the template for this generated file go to
>  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
>  */
> //response.getEchoedSearchRetrieveRequest().getQuery()
> /**
>  * @author dspace
>  *
>  * To change the template for this generated type comment go to
>  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
>  */
> public class cliente_java {
>
>     public static void main(String[] args) {
>         try{
>             SRWSampleServiceLocator service = new SRWSampleServiceLocator();
>             URL url = new URL("http://localhost:8080/SRW/search/DSpace";);
>             SRWPort port = service.getSRW(url);
>             SearchRetrieveRequestType request = new
> SearchRetrieveRequestType();
>             request.setQuery("computer");
>             SearchRetrieveResponseType response =
> port.searchRetrieveOperation(request);
>             //Object i = response.getResultSetId();
>             System.out.println("Resultados:"+
> response.getEchoedSearchRetrieveRequest().getQuery());
>
>         }
>         catch (Exception e){
>             e.printStackTrace();
>         }
>
>
>     }
> }
> ######################################################
> It returns:
>            Results:1        (this is the number of records finded)
>            Results:name (this is the author or the title of the item)
>
> Our question is, how can we change this code to the answer to our request
> returns the full description of the items stored on Dspace?
> Thanks for the help.
>   


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to