Created
November 28, 2012 02:32
-
-
Save Benjit87/4158672 to your computer and use it in GitHub Desktop.
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
filename resp_xml 'response.xml'; | |
filename rqst_xml 'request.xml'; | |
proc soap in=rqst_xml out=resp_xml | |
url="http://localhost:8084/CalculatorWSApplication/CalculatorWSApplication" soapaction="Query"; | |
run; | |
/******************************************************************************** | |
* Generated by XML Mapper, 903000.0.0.20110518190000_v930 | |
********************************************************************************/ | |
/* | |
* Environment | |
*/ | |
filename response 'response.xml'; | |
filename SXLEMAP 'soaptest.map'; | |
libname response xmlv2 xmlmap=SXLEMAP access=READONLY; | |
/* | |
* Printing | |
*/ | |
title 'Webservice Output'; | |
proc print data=response.addResponse; run; | |
title; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment