Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.3.0
-
Fix Version/s: 1.3.0
-
Component/s: AdMax Deployment Service
-
Labels:None
-
Environment:
optus dev environment
Description
Optus ADS updateCampaignStatus gets the response back synchronously, but it doesn't actually send the status back in the response
// soap request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adm="http://www.thesearchagency.com/AdMaxDeploymentService/">
<soapenv:Header/>
<soapenv:Body>
<adm:updateCampaignStatusRequest>
<header>
<requestID>81788</requestID>
</header>
<customerID>martian 3</customerID>
<!-1 or more repetitions:->
<campaignStatusList>
<campaignID>martian_3-1</campaignID>
<campaignStatus>active</campaignStatus>
</campaignStatusList>
</adm:updateCampaignStatusRequest>
</soapenv:Body>
</soapenv:Envelope>
== I watched it go through the ADS, to Admax Listener, back to ADS, then gives back response
// soap response
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:updateCampaignStatusResponse xmlns:ns2="http://www.thesearchagency.com/AdMaxDeploymentService/">
<header>
<requestID>81788</requestID>
</header>
<customerID>martian 3</customerID>
</ns2:updateCampaignStatusResponse>
</soap:Body>
</soap:Envelope>
== I'd expect to see in the response something like
<status>SUCCEEDED</status>