Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ebsco/edsapi-java-sample

Sample application in Java to demonstrate EDS API usage
https://github.com/ebsco/edsapi-java-sample

Last synced: about 1 month ago
JSON representation

Sample application in Java to demonstrate EDS API usage

Awesome Lists containing this project

README

        

To use the demo:
Run 'mvn install' in the directory containing the pom.xml file to create a war file and deploy in Tomcat.

Configuring the Java Demo:
The Demo supports both UID and IP Authentication. To set the authentication mode, use the "authentication_type"
parameter. The supported types are UID and IP.

```xml

authentication_type
UID


```

if using UID authentication, you must also provide a valid username and password:

```xml

user_name
[your_user_name]


password
[your_password]

```

The demo supports the processing of messages in JSON or XML. To set the message format, use the "message_format"
parameter. The available formats are XML or JSON.

```xml

message_format
JSON


```

To set the profile for the EDS API to work with, use the "profile" parameter:

```xml

profile
[your_profile]


```