<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How to add SOAP request on synthetic HTTP monitor in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-add-SOAP-request-on-synthetic-HTTP-monitor/ta-p/209311</link>
    <description>&lt;P&gt;To create SOAP requests on synthetic HTTP monitor, we need a sample HTTP Request &amp;amp; Response information like below,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Note:- This is the sample request and response which uses the dummy urls 
&amp;lt;!-- REQUEST ----------------------------------------------------&amp;gt;
POST https://www.dynatrace.com/additioncalculator //Post url

//Request Headers
Accept: */*
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Accept-Language: en-us
Accept-Encoding: gzip
Host: www.dynatrace.com
SOAPAction: https://www.dynatrace.com/additioncalculatoraction
Content-Type: text/xml
Content-Length: 256
Connection: Keep-Alive
Authorization: Basic Testing


//Request Body
&amp;lt;?xml version="1.0" standalone="yes"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="https://www.dynatrace.com/"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;request:Addition&amp;gt;
            &amp;lt;request:input1&amp;gt;10&amp;lt;/request:input1&amp;gt;
            &amp;lt;request:input2&amp;gt;20&amp;lt;/request:input2&amp;gt;
        &amp;lt;/request:Addition&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;

&amp;lt;!-- RESPONSE ---------------------------------------------------&amp;gt;

//Response Headers
HTTP/1.1 200 OK
Cache-Control: private, max-age=0
Date: Tue, 01 Nov 2022 10:28:08 GMT
Content-Length: 298
Content-Type: text/xml; charset=utf-8
Content-Encoding: gzip
Server: Microsoft-IIS/10.0
Vary: Accept-Encoding

//Response body
&amp;lt;?xml version="1.0" standalone="yes"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;AdditionResponse xmlns="http://www.dynatrace.com/"&amp;gt;
            &amp;lt;AdditionResult&amp;gt;30&amp;lt;/AdditionResult&amp;gt;
        &amp;lt;/AdditionResponse&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Based on the above information, we can create the synthetic HTTP monitor by adding the post urls, request headers, Basic Authentication details and request body like below,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image1.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/11004i215629665A2FBF04/image-size/large?v=v2&amp;amp;px=999" role="button" title="image1.png" alt="image1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Apr 2023 07:00:00 GMT</pubDate>
    <dc:creator>Mareeswaran</dc:creator>
    <dc:date>2023-04-12T07:00:00Z</dc:date>
    <item>
      <title>How to add SOAP request on synthetic HTTP monitor</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-add-SOAP-request-on-synthetic-HTTP-monitor/ta-p/209311</link>
      <description>&lt;P&gt;To create SOAP requests on synthetic HTTP monitor, we need a sample HTTP Request &amp;amp; Response information like below,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;Note:- This is the sample request and response which uses the dummy urls 
&amp;lt;!-- REQUEST ----------------------------------------------------&amp;gt;
POST https://www.dynatrace.com/additioncalculator //Post url

//Request Headers
Accept: */*
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Accept-Language: en-us
Accept-Encoding: gzip
Host: www.dynatrace.com
SOAPAction: https://www.dynatrace.com/additioncalculatoraction
Content-Type: text/xml
Content-Length: 256
Connection: Keep-Alive
Authorization: Basic Testing


//Request Body
&amp;lt;?xml version="1.0" standalone="yes"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="https://www.dynatrace.com/"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;request:Addition&amp;gt;
            &amp;lt;request:input1&amp;gt;10&amp;lt;/request:input1&amp;gt;
            &amp;lt;request:input2&amp;gt;20&amp;lt;/request:input2&amp;gt;
        &amp;lt;/request:Addition&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;

&amp;lt;!-- RESPONSE ---------------------------------------------------&amp;gt;

//Response Headers
HTTP/1.1 200 OK
Cache-Control: private, max-age=0
Date: Tue, 01 Nov 2022 10:28:08 GMT
Content-Length: 298
Content-Type: text/xml; charset=utf-8
Content-Encoding: gzip
Server: Microsoft-IIS/10.0
Vary: Accept-Encoding

//Response body
&amp;lt;?xml version="1.0" standalone="yes"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;AdditionResponse xmlns="http://www.dynatrace.com/"&amp;gt;
            &amp;lt;AdditionResult&amp;gt;30&amp;lt;/AdditionResult&amp;gt;
        &amp;lt;/AdditionResponse&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Based on the above information, we can create the synthetic HTTP monitor by adding the post urls, request headers, Basic Authentication details and request body like below,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image1.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/11004i215629665A2FBF04/image-size/large?v=v2&amp;amp;px=999" role="button" title="image1.png" alt="image1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 07:00:00 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-to-add-SOAP-request-on-synthetic-HTTP-monitor/ta-p/209311</guid>
      <dc:creator>Mareeswaran</dc:creator>
      <dc:date>2023-04-12T07:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to add SOAP request on synthetic HTTP monitor</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-to-add-SOAP-request-on-synthetic-HTTP-monitor/tac-p/212090#M180</link>
      <description>&lt;P&gt;Thank you for sharing this! I'm sure it will help out many community members.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 18:54:00 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-to-add-SOAP-request-on-synthetic-HTTP-monitor/tac-p/212090#M180</guid>
      <dc:creator>ChadTurner</dc:creator>
      <dc:date>2023-05-12T18:54:00Z</dc:date>
    </item>
  </channel>
</rss>

