Created
October 14, 2018 23:11
-
-
Save rajeevshukla/7dcfc56e60c925945d31aa44dd71acdd to your computer and use it in GitHub Desktop.
Main class
This file contains 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
public static void main(String[] args) { | |
SimpleProvider clientConfig = ApplicationUtils.configureAxisLogger(); | |
try { | |
XYZLocator dataUtilizationLocator = new XYZLocator("WSDL LOCATION", "Qname"); | |
dataUtilizationLocator.setEngineConfiguration(clientConfig); | |
dataUtilizationLocator.setEngine(new AxisClient(clientConfig)); | |
XYZSoap xyzSoap = dataUtilizationLocator.getXYZSoap(); | |
xyzSoap.getDataFromService(); | |
} catch (Exception e) { | |
e.printStrackTrace(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment