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
1
vote
1 answer

SOAP Solution in python

i'm rather new to SOAP and web services and i tried to create working and stable SOAP environment. After some reading i decided to use suds client and soaplib server. I'm using python2.7 and i've installed suds and soaplib by using easy_install so…
zordax
  • 35
  • 4
0
votes
1 answer

Calling a soaplib method running on python in Java

I have the following situation, I have to use a web service written in python with the use of soaplib in Java. I can import the web service just fine in eclipse, but when I try to call a method of the web service I get the following error message…
flazzarini
  • 7,791
  • 5
  • 33
  • 34
0
votes
1 answer

JavaScript SOAP client throwing an Uncaught TypeError

I am using the guru4's soap client to write a simple "Hello world" program. I am getting an error from the Chrome console Uncaught TypeError: Cannot read property 'documentElement' of null. Here is my JavaScript.
John
  • 13,197
  • 7
  • 51
  • 101
0
votes
1 answer

wsdl2java and soap with attachments issue

I generated a WS Client using wsdl2java for a Soap service developed with soaplib 0.8.2 (python). The server does support Soap with attachments as I could see with tcpdump while using a client built also with soaplib. But when it comes to Java, the…
0
votes
2 answers

how to get client ip in soap web service method?

I'm using soaplib library for SOAP web services, I want to access client's IP Address when client request has been made in my web service method. class HelloWorldService(DefinitionBase): @soap(String, Integer, _returns=Array(String)) def…
shahjapan
  • 13,637
  • 22
  • 74
  • 104
0
votes
1 answer

How to create web page to test and use web service?

I need to create a simple web service, and am leaning towards the Python package soaplib. I would also like to create a simple web page that can consume the web service. This will serve two purposes: Allow for easier testing by multiple people…
Kevin P.
  • 1,414
  • 1
  • 18
  • 24
0
votes
1 answer

fix soaplib to support chunked requests

I have soap webservice built with soaplib, but if client sent chunked request it fails on length = req_env.get("CONTENT_LENGTH") body = input.read(int(length)) because length is '' (empty string), any ideas how to fix soaplib?
Andrey Koltsov
  • 1,956
  • 6
  • 24
  • 43
0
votes
1 answer

Flask-Enterprise - soap how to return class

I wanted to use flask-Enterprise but I was not able to find any documentation or some examples. It is easy if I want to return primitive type, but if I'd like to return class, I am not able to do that. from soaplib.core.model.clazz import…
0
votes
1 answer

Is it possible to use soaplib server with Apache?

Almost every documentation I am seeing shows Soaplib servers to be deployed using Cherry Py or some other server. Instead of that can be be deployed using apache? Thanks
Strong Like Bull
  • 11,155
  • 36
  • 98
  • 169
0
votes
2 answers

python soaplib ImportError: No module named core.service

I'm developing python application and using soaplib for use in .net but when I run the code , I ran into this error Traceback (most recent call last): File "soap.py", line 2, in from soaplib.core.service import rpc,…
Saeed Ghareh Daghi
  • 1,164
  • 1
  • 13
  • 21
0
votes
1 answer

Is there any timeout set in Django 1.4?

I have got an issue with Django 1.4 and with Soaplib 2.0. When I send from my client a request with some large arguments, Django raised an exception and send an email of this type : "[Django] ERROR (EXTERNAL IP): Internal Server Error:…
0
votes
1 answer

soaplib - python - namespace missing in header

I'm using soaplib (python) to make a webservices server. I have implemented a method and generated a wsdl so that any soap client can use easily the webservice. I'm using soapUI to validate my webservice, and soapUI says the response isn't OK. I…
Julien Greard
  • 969
  • 1
  • 12
  • 32
0
votes
1 answer

Soaplib connection - msg 's0:FunctionName', not-found

I have problem with solution that was working very good and suddenly it stopped to do so. I wrote server/client scripts and modules to make a SOAP connection type for my application. Here is my server code : import os import rsglobal import…
zordax
  • 35
  • 4
0
votes
1 answer

Pass CSV File as Parameter to Web Service

How to pass CSV file contents as parameter to web service in python.Now i am passing only 5 values to web service and inserting it to mongodb database. I am using soaplib web service and mongodb database,using soaplib load data to database. How to…
user27
  • 146
  • 1
  • 1
  • 8
0
votes
0 answers

deploy soaplib webservice with apache2

I have set up apache2 and mod_wsgi. I have a wsgi directory in which i have some python code saved in a *.wsgi file. The code is pasted below. In the web browser when i enter the url (localhost/wsgi/ape.wsgi) it displays the records returned from…