How to convert curl of SOAP request to RCurl

How do I convert this one liner:

curl -d @request.xml -o response.xml http://www.sample.com/soap

      

It accesses an xml request that looks like this:

<?xml version="1.0" encoding="utf-8"?>
     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://sample.com/">
    <soap:Body>
      <req:getEvents>
        <start>2014-12-12T00:00:00+0100</start>
        <end>2014-12-13T00:00:00+0100</end>
        <type>TYPE</type>
      </req:getEvents>
     </soap:Body>
    </soap:Envelope>

      

The response is written to response.xml I would like to read the response directly into r

+3


source to share


1 answer


Here, as with httr:



library(httr)
r <- POST("http://www.sample.com/soap", body = upload_file("request.xml"))
stop_for_status(r)
content(r)

      

+8


source







All Articles