source: sipes/modules_contrib/soap_server/wsdl/soap_server.wsdl.inc @ 3959b2a

stableversion-3.0
Last change on this file since 3959b2a was 3959b2a, checked in by planificacion <planificacion@…>, 8 años ago

Se agregaron los modulos para permitir el despliegue de servicios web (SOAP)

  • Propiedad mode establecida a 100644
File size: 1.1 KB
Línea 
1<?php
2// $Id: soap_server.wsdl.inc,v 1.2.2.3 2011/01/21 23:12:57 ilo Exp $
3/**
4 * @file
5 * This file is a template for WSDL construction by soap_server.
6 */
7
8$wsdl_content = "<?xml version='1.0' encoding='UTF-8' ?>
9<definitions name='soap_server'
10  targetNamespace='urn:soap_server'
11  xmlns:tns='urn:soap_server'
12  xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
13  xmlns:xsd1='http://www.w3.org/2001/XMLSchema'
14  xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
15  xmlns='http://schemas.xmlsoap.org/wsdl/'>
16 
17  <types>
18        <xsd:schema targetNamespace='urn:soap_server'
19      xmlns:xsd='http://www.w3.org/2001/XMLSchema' />
20  </types>
21 
22$requests
23
24$responses
25
26  <portType name='soap_server_port_type'>
27$port_type_operations
28  </portType>
29
30  <binding name='soap_server_binding' type='tns:soap_server_port_type'>
31    <soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http' />
32$binding_operations
33  </binding>
34
35  <service name='soap_server_service'>
36    <port name='soap_server_port' binding='tns:soap_server_binding'>
37      <soap:address location='$service_endpoint'/>
38    </port>
39  </service>
40</definitions>";
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.