Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). UI Patterns (SDC in Drupal UI) 2.0.18 Minor update available for module ui_patterns (2.0.18). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Provus Mega Menu Module provus_mega_menu crossed 1,000 active installs.

SOAP Manager

No security coverage
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.

Activity

Total releases
5
First release
May 2025
Latest release
7 months ago
Releases (12 mo)
1 ▼ from 4
Maintenance
Slowing

Release Timeline

Releases

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