# SOAP: Add integers

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /calculator.asmx:
    post:
      summary: 'SOAP: Add integers'
      deprecated: false
      description: >+
        Add two integers from the request and return the result in the
        response. 


        The service is provided by DneOnline, and you can try out the API by
        clicking "try it out".

      tags:
        - 'SOAP API Documentations/Example: WebService'
      parameters:
        - name: Content-Type
          in: header
          description: ''
          required: false
          example: text/xml
          schema:
            type: string
      requestBody:
        content:
          application/xml:
            schema:
              type: object
              properties: {}
              x-apidog-orders: []
            example: >-
              <?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>
                  <Add xmlns="http://tempuri.org/">
                    <intA>5</intA>
                    <intB>7</intB>
                  </Add>
                </soap:Body>
              </soap:Envelope>
      responses:
        '200':
          description: ''
          content:
            application/xml:
              schema:
                type: object
                properties:
                  soap:Body:
                    type: object
                    properties:
                      AddResponse:
                        type: object
                        properties:
                          AddResult:
                            type: string
                        required:
                          - AddResult
                        x-apidog-orders:
                          - AddResult
                    required:
                      - AddResponse
                    x-apidog-orders:
                      - AddResponse
                required:
                  - soap:Body
                xml:
                  name: soap:Envelope
                x-apidog-orders:
                  - soap:Body
              example: >-
                <?xml version="1.0" encoding="utf-8"?>

                <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">
                    <soap:Body>
                        <AddResponse xmlns="http://tempuri.org/">
                            <AddResult>12</AddResult>
                        </AddResponse>
                    </soap:Body>
                </soap:Envelope>
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: 'SOAP API Documentations/Example: WebService'
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/849209/apis/api-15125869-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
