Created
January 26, 2012 20:42
-
-
Save ctataryn/1684974 to your computer and use it in GitHub Desktop.
CXF Client
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
@Test | |
public void testRetrieveById() { | |
//uses the localhost:8080/PlayerManagement address from the WSDL <soap:address> element | |
PlayerManagement client = new PlayerManagement_Service().getPlayerManagementSOAP(); | |
WsPlayer player = client.retrievePlayerById(1); | |
assertNotNull(player); | |
assertEquals("Dollie", player.getFirstName()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment