#OCLC SRW/SRU Server#
The SRW (Search & Retrieve Web Service) initiative is part of an international collaborative effort to develop a standard web-based text-searching interface. It draws heavily on the abstract models and functionality of Z39.50, but removes much of the complexity. SRW is built using common web development tools (WSDL, SOAP, HTTP and XML) and development of SRW interfaces to data repositories is significantly easier than for Z39.50. In addition, such arcane record formats as MARC and GRS-1 have been replaced with XML.
SRU (Search & Retrieve URL Service) is a URL-based alternative to SRW. Messages are sent via HTTP using the GET method and the components of the SRW SOAP request are mapped to simple HTTP parameters. The response to an SRU request is identical to the response to an SRW request, with the SOAP wrapper removed.
Complete information on the SRW/SRU standard can be found at the maintenance agency web site: http://www.loc.gov/standards/sru/
Instructions for how to build and install an SRW/SRU server for DSpace, Lucene and/or Pears/Newton.
Download and build the SRW Database interface software that you want.
- Java 1.7 or higher
- Tomcat or some other servlet engine
- Ant
Download the latest SRW server from github. It contains everything you need to build the base SRW server, but does not include the libraries necessary to build the DSpace, Lucene or SRW Federated Searching interfaces.
The server, as downloaded, includes a test database interface. This will allow you to verify that the server is operating. But, eventually you will want to add an interface for a specific database. Download the package for that database and follow its build instructions. Then, copy the jar file from the "target" directory of the database interface package and the jars (except the SRW jar!) from the "lib" directory to the web/WEB-INF/lib directory of the SRW distribution.
Run maven to compile the code and build a war file. After you’ve run maven, you’ll find a directory named “target” and in it you will find the war file and the SRW jar files. If you have an existing SRW deployment with its own configuration files, you may want to just copy the SRW.jar file to your <tomcat>/webapps/<SRW>/WEB-INF/lib
directory. Otherwise, copy the SRW.war file to your <tomcat>/webapps
directory.
Start (or restart) your tomcat server. You should see an SRW directory in the <tomcat>/webapps
directory. Try searching the test database. The URL below assumes you have installed the servlet engine at port 8080 on your local machine. Change the host and port if your configuration is different.
http://localhost:8080/SRW/search/test should get you something like this:
http://localhost:8080/SRW/search/test?query=dog should get you something like this:
http://localhost:8080/SRW/search/test?scanClause=dog should get you something like this:
"Cannot find server or DNS Error" You've specified the wrong host or port or Tomcat isn't running.
"The download of the specified resource has failed"
The SRW Servlet failed during initialization. The Tomcat log should contain information explaining the failure. If the servlet was unable to find the SRWServer.props file, you will see in the log several attempts to open the file and finally a FileNotFoundException
.
I am sure there are other failure modes during testing. I'll document them as they are reported.