https://github.com/parasoft/soavirt-extension-examples
Custom Extension Examples for Parasoft SOAtest and Virtualize
https://github.com/parasoft/soavirt-extension-examples
Last synced: 10 months ago
JSON representation
Custom Extension Examples for Parasoft SOAtest and Virtualize
- Host: GitHub
- URL: https://github.com/parasoft/soavirt-extension-examples
- Owner: parasoft
- License: apache-2.0
- Created: 2022-04-28T16:43:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-24T21:28:05.000Z (over 3 years ago)
- Last Synced: 2025-01-22T08:42:42.165Z (about 1 year ago)
- Language: Java
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# soavirt-extension-examples
Custom Extension Examples for Parasoft SOAtest and Virtualize
## How to Build
* Prerequisites
* Java 8+
* Maven 3+
* Command line
* cd [custom extension folder]
* mvn clean install
* Eclipse/SOAtest/Virtualize
* File > Import > Maven > Existing Maven Projects > Next
* Select the custom extension folder and click Finish
## Custom Transports
* FileTransport is a file-based custom transport example.
* SimpleHTTPTransport is a simple HTTP custom transport example.
## Custom Message Formats
* SimpleMessage is a simple message example provided to demonstrate how to create Custom Message Formats in SOAtest. The message consists of key values joined by "=" and has the " " (space) for delimiter. For example: key1=value1 key2=value2 key3=value3 key4=value4.
## Custom Listeners
* SimpleSocketListener is a socket-based custom listener example.