Retrieving an image and its DICOM information from a series

Retrieving an image and its DICOM information from a series is done using the GetDicomFile web method exposed by the web service. The parameters taken by this method are shown below:

POST /leadtools.medicalWebviewer.cs.webservices/mainservice.asmx HTTP/1.1
Host: 10.0.2.55
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GetDicomFile"
 
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetDicomFile xmlns="http://tempuri.org/">
      <username>string</username>
      <password>string</password>
      <studyInstanceUID>string</studyInstanceUID>
      <seriesInstanceUID>string</seriesInstanceUID>
      <sopInstanceUID>string</sopInstanceUID>
    </GetDicomFile>
  </soap:Body>
</soap:Envelope>