Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ebsco/edsapi-simple-java-sample
Simple sample application in Java to demonstrate very basic EDS API usage.
https://github.com/ebsco/edsapi-simple-java-sample
Last synced: about 2 months ago
JSON representation
Simple sample application in Java to demonstrate very basic EDS API usage.
- Host: GitHub
- URL: https://github.com/ebsco/edsapi-simple-java-sample
- Owner: ebsco
- License: other
- Created: 2014-07-17T17:03:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-17T17:26:24.000Z (over 10 years ago)
- Last Synced: 2024-04-14T18:05:58.543Z (9 months ago)
- Language: Java
- Size: 285 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 Simple Java Demo:
This demo only supports IP Authentication. Make sure that you are set up for IP Authentication.To set the profile for the EDS API to work with, use the 'profile' parameter:
```xml
profile
[your_profile]
```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
XML
```The demo supports running in guest or non-guest mode. To set the mode, change the 'is_guest' parameter.
To set the application to run in guest mode, set the value to 'y'. To run in non-guest mode, set the value to 'y'```xml
is_guest
y
```