Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Make

...

the

...

following

...

changes

...

in

...

OLE

...

to

...

enable

...

searching

...

of

...

external

...

datasources

...

with

...

Z39.50

...

protocol

Setting up external dependencies for jz3950 library for connecting to Z39.50

...

datasources.

...

  1. Get

...

  1. source

...

  1. code

...

  1. from

...

  1. https://jz3950.svn.sourceforge.net/svnroot/jz3950/trunk

...

  1. and

...

  1. build

...

  1. the

...

  1. jar

...

  1. file.

...

  1. Create

...

  1. maven

...

  1. dependency

...

  1. for

...

  1. the

...

  1. above

...

  1. created

...

  1. jar

...

  1. file

...

  1. using

...

  1. below

...

  1. command;

...

}
Code Block
mvn install:install-file -DgroupId=net.sf.jz3950 -DartifactId=jz3950 -Dversion=1.0-SNAPSHOT -Dfile=<path_to_your_jar_file> -Dpackaging=jar -DgeneratePom=true

{code}

h2. Changes in 

Changes in ole-docstore-search

...

project

File pom.xml

...

Uncomment

...

the

...

following

...

lines.

...

}
Code Block
<!--
      <dependency>
          <groupId>net.sf.jz3950</groupId>
          <artifactId>jz3950</artifactId>
          <version>1.0-SNAPSHOT</version>
      </dependency>
      <dependency>
          <groupId>org.jzkit</groupId>
          <artifactId>a2j</artifactId>
          <version>2.0.4</version>
      </dependency>
-->

{code}

h3. Class Z3950DataSource

Uncomment the code in this class.

h2. Changes in ole-rice2 project


h3. Class ImportBibController

Uncomment the following line.

{code}

Class Z3950DataSource

Uncomment the code in this class.

Changes in ole-rice2 project

Class ImportBibController

Uncomment the following line.

Code Block
//List<String> results = externalDataSource.searchForBibs(searchParams,dataSourceConfig);

{code}

h3. File 

File ImportBibSearchPage.xml

...

Uncomment

...

the

...

commented

...

line

...

in

...

the

...

following

...

snippet.

...

}
Code Block
<bean id="search_button" parent="Uif-SecondaryActionButton-Small"
                      p:methodToCall="search" p:actionLabel="Search"/>
                      <!--p:methodToCall="search" p:actionLabel="Search" p:refreshId="ExternalSourceResults-Section"/>-->

{code}