Questions tagged [soaplib]

Python SOAP library.

This is a simple, easily extendible soap library that provides several useful tools for creating and publishing soap web services in python. This package features on-demand wsdl generation for the published services, a wsgi-compliant web application, support for complex class structures, binary attachments, simple framework for creating additional serialization mechanisms and a client library.

This prokect now uses lxml as it's XML API, providing full namespace support.

32 questions
0
votes
1 answer

Python soaplib "Hello World" program - Parameters and types not showing up on client

I'm attempting to run the soaplib Hello World program: import soaplib from soaplib.core.service import rpc, DefinitionBase from soaplib.core.model.primitive import String, Integer from soaplib.core.server import wsgi from soaplib.core.model.clazz…
user1401321
  • 111
  • 12
0
votes
0 answers

SOAP web service with soaplib & suds

I use soap webservices with soaplib & create client from command prompt using suds, This working properly. Can anybody tell me how to create client through view? How to pass oject to rpc() or soap() method of soaplib? Thanks in advance
Meenakshi
  • 259
  • 5
  • 19
1 2
3