This file is indexed.

/usr/share/doc/python-soappy/WSDL.txt is in python-soappy 0.12.0-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
WSDL NOTES:

Release 0.9.9 and later include logic for dealing with web service
description language (WSDL) files.  

   - SOAPpy.WSDL provides a SOAP Proxy object that parses a WSDL file
   and provides access to the listed services:

        url = 'http://www.xmethods.org/sd/2001/TemperatureService.wsdl'
        zip = '01072'
        proxy = SOAPpy.WSDL.Proxy(url)
        temp = proxy.getTemp(zip)
        print 'Temperature at', zip, 'is', temp

    - On the server, you can allow the client to download the WSDL for
    a service by sending a request of the form by adding a do_GET
    method to the SOAPRequestHandler.  [Not yet working when
    debug=FALSE. Add example here when working]


$Id: WSDL.txt,v 1.2 2005/02/21 20:09:34 warnes Exp $