Skip to content

Instantly share code, notes, and snippets.

@Benjit87
Created November 28, 2012 02:32
Show Gist options
  • Save Benjit87/4158672 to your computer and use it in GitHub Desktop.
Save Benjit87/4158672 to your computer and use it in GitHub Desktop.
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