Chilkat Online Tools

Android / Salesforce Platform APIs / SOAP undelete

Back to Collection Items

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean success;

    // Use this online tool to generate code from sample XML: Generate Code to Create XML

    // The following XML is sent in the request body.

    // <?xml version="1.0" encoding="utf-8"?>
    // <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:enterprise.soap.sforce.com">
    //     <soapenv:Header>
    //         <urn:SessionHeader>
    //             <urn:sessionId>{{_accessToken}}</urn:sessionId>
    //         </urn:SessionHeader>
    //     </soapenv:Header>
    //     <soapenv:Body>
    //         <urn:undelete>
    //             <urn:ids/>
    //         </urn:undelete>
    //     </soapenv:Body>
    // </soapenv:Envelope>
    // 

    CkXml xml = new CkXml();
    xml.put_Tag("soapenv:Envelope");
    xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
    xml.AddAttribute("xmlns:urn","urn:enterprise.soap.sforce.com");
    xml.UpdateChildContent("soapenv:Header|urn:SessionHeader|urn:sessionId","{{_accessToken}}");
    xml.UpdateChildContent("soapenv:Body|urn:undelete|urn:ids","");

    http.SetRequestHeader("Content-Type","text/xml; charset=UTF-8");
    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");
    http.SetRequestHeader("SOAPAction","undelete");
    http.SetRequestHeader("Accept","text/xml");

    CkStringBuilder sbRequestBody = new CkStringBuilder();
    xml.GetXmlSb(sbRequestBody);

    CkHttpResponse resp = http.PTextSb("POST","https://login.salesforce.com{{site}}/services/Soap/c/{{version}}",sbRequestBody,"utf-8","text/xml; charset=UTF-8",false,false);
    if (http.get_LastMethodSuccess() == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, String.valueOf(resp.get_StatusCode()));
    Log.i(TAG, resp.bodyStr());


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: text/xml; charset=UTF-8"
	-H "Accept: text/xml"
	-H "SOAPAction: undelete"
	-d '<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:enterprise.soap.sforce.com">
  <soapenv:Header>
     <urn:SessionHeader>
        <urn:sessionId>{{_accessToken}}</urn:sessionId>
     </urn:SessionHeader>
  </soapenv:Header>
  <soapenv:Body>
     <urn:undelete>
        <urn:ids></urn:ids>
     </urn:undelete>
  </soapenv:Body>
</soapenv:Envelope>'
https://login.salesforce.com{{site}}/services/Soap/c/{{version}}

Postman Collection Item JSON

{
  "name": "SOAP undelete",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "text/xml; charset=UTF-8",
        "type": "text"
      },
      {
        "key": "Accept",
        "value": "text/xml",
        "type": "text"
      },
      {
        "key": "SOAPAction",
        "value": "undelete",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:urn=\"urn:enterprise.soap.sforce.com\">\n  <soapenv:Header>\n     <urn:SessionHeader>\n        <urn:sessionId>{{_accessToken}}</urn:sessionId>\n     </urn:SessionHeader>\n  </soapenv:Header>\n  <soapenv:Body>\n     <urn:undelete>\n        <urn:ids></urn:ids>\n     </urn:undelete>\n  </soapenv:Body>\n</soapenv:Envelope>",
      "options": {
        "raw": {
          "language": "xml"
        }
      }
    },
    "url": {
      "raw": "{{url}}{{site}}/services/Soap/c/{{version}}",
      "host": [
        "{{url}}{{site}}"
      ],
      "path": [
        "services",
        "Soap",
        "c",
        "{{version}}"
      ]
    },
    "description": "Undeletes records from the Recycle Bin."
  },
  "response": [
  ]
}