How do I get SSRS to use a GET request instead of a POST for a XML Web Service Datasource -
i have set of ssrs reports use http://localhost:33333/soapcalls.asmx/getdata xml datasource connection strings
i change them http://localhost:33333/soapcalls.asmx use shared datasource , that, need configure query's method name.
i tried change dataset's query below , seen "works", web service requires request rather post request function
<query>  <method name="getdata" namespace="http://example.com"/>  <elementpath ignorenamespaces="true">*</elementpath> </query> is possible configure query becomes equivalent querying old http://localhost:33333/soapcalls.asmx/getdatadatasource?
 
 
Comments
Post a Comment