Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ebsco/edsapi-java-sample
- Owner: ebsco
- License: other
- Created: 2014-07-17T15:45:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-15T15:07:31.000Z (over 10 years ago)
- Last Synced: 2024-04-14T18:05:57.731Z (8 months ago)
- Language: Java
- Size: 668 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]
```