Skip to main content
Drupal is a registered trademark of Dries Buytaert
Release: OpenID Connect / OAuth client 3.0.0-alpha9 New alpha version released for module openid_connect (3.0.0-alpha9). Usage Milestone: Google Analytics Module google_analytics crossed 1,000 active installs. Release: Timelinr 1.0.1 Minor update available for module timelinr (1.0.1). Release: GraphQL Compose Codegen 1.1.2 Minor update available for module graphql_compose_codegen (1.1.2). Release: Mapy.com 1.1.3 Minor update available for module mapycom (1.1.3). Release: Ckeditor5 entity browser 3.0.3 Minor update available for module ckeditor5_entity_browser (3.0.3). Release: Ckeditor5 entity browser 3.0.1 Minor update available for module ckeditor5_entity_browser (3.0.1). Release: Ckeditor5 entity browser 3.0.2 Minor update available for module ckeditor5_entity_browser (3.0.2). Release: Teamleader Integration 4.0.2 Minor update available for module teamleader (4.0.2). Module Revived: Entityqueue Buttons 1.1.2 Module entityqueue_buttons updated after 8 months of inactivity (1.1.2).

SOAP Manager

No security coverage Drupal 10–11
View on drupal.org

SOAP Manager allows you to create and manage SOAP web service endpoints in Drupal, enabling you to expose Drupal functionality to external systems using the SOAP protocol. It offers custom WSDL support, a plugin-based architecture for extensions, authentication, security settings, and logging capabilities.

SOAP Manager provides a comprehensive framework for creating and managing SOAP-based web service endpoints within Drupal. It allows site administrators to expose Drupal functionality as SOAP services, making it easy to integrate with external systems that require SOAP protocol communication.

Features

Easy SOAP Endpoint Creation: Create and manage multiple SOAP endpoints through a user-friendly administrative interface

  • Custom WSDL: Use your own custom WSDL files instead of auto-generated ones
  • Plugin-based Architecture: Extend functionality by creating custom SOAP resource plugins
  • Authentication Support: Secure endpoints with Drupal authentication
  • Comprehensive Security Settings: Configure request timeouts, rate limiting, and maximum request sizes
  • Detailed Logging: Track SOAP requests, responses, and errors

Post-Installation

After installing the SOAP Manager module:

  • Go to Administration » Configuration » Web services » SOAP Endpoints to view and manage your SOAP endpoints
  • Click "Add SOAP endpoint" to create a new endpoint
  • Configure the endpoint with a name, path, and description
  • Enable the SOAP resources you want to expose through this endpoint
  • Configure authentication settings if needed
  • Save the endpoint

Your SOAP endpoint will be available at the path you specified (e.g., /soap/my-service). The WSDL document is accessible at /soap/my-service?wsdl.
For global module settings, visit Administration » Configuration » Web services » SOAP Endpoint Settings.

Additional Requirements

  • PHP SOAP extension enabled
  • Drupal core Serialization module

Developer Information

To create a custom SOAP resource, implement a plugin class with the @SoapResource annotation:

/**
 * @SoapResource(
 *   id = "my_custom_resource",
 *   label = @Translation("My Custom Resource"),
 *   description = @Translation("Provides custom SOAP operations.")
 * )
 */
class MyCustomResource extends SoapResourceBase {

  /**
   * {@inheritdoc}
   */
  public function processRequest(array $request) {
    // Process the request and return a response.
    return [
      'status' => 'success',
      'data' => [
        // Your response data here
      ],
    ];
  }

}

Place this class in your module's src/Plugin/SoapResource directory to make it available for use in SOAP endpoints.

Depends on

Dependencies of the latest stable release

  • serialization Drupal core

Required by

Tracked projects that depend on this one

No tracked projects depend on this one yet.

Activity

Tracked releases
5
Tracked since
May 2025
Latest release
9 months ago
Releases (12 mo)
1 ▼ from 4
Maintenance
Slowing

Release Timeline

Releases

Version Type Core Release date
1.1.1 Stable 10–11 Nov 26, 2025
1.1.0 Stable 10–11 May 12, 2025
1.1.x-dev Dev 10–11 May 12, 2025
1.0.0 Stable 10–11 May 10, 2025
1.0.x-dev Dev 10–11 May 10, 2025