Created
August 15, 2016 01:24
-
-
Save hdsdi3g/c2e7fd8ae9f94ef9bec5a67c203fcf36 to your computer and use it in GitHub Desktop.
Create Java packages with wsimport for a Vantage setup.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# USAGE ./import-telestream-vantage-ws.sh <host name/IP of Vantage server> | |
WS_SERVER=$1 | |
mkdir -p src | |
wsimport -extension -XadditionalHeaders -keep -p net.telestream.vantage.ws -clientjar telestream-vantage-ws-bin.jar -s src "http://$WS_SERVER:8676/?wsdl" | |
cd src | |
zip -r ../telestream-vantage-ws-src.zip . | |
cd .. | |
rm -rf src |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment