I have a problem with opening PDF file.
(i am using Ladon and Python under mod_wsgi working with Apache2. so on a ubuntu apache server system- switched to windows system)
I'm trying to run the following Python script:
(where, str_pdf_file_name =…
I'm trying to get ladon working, however, I don't seem to be able to define the service properly.
Specifically, even with a minimal test case, it's throwing
Traceback (most recent call last):
File…
The web services are built on Python's Ladon framework.
Web Service URL is: http://ladonize.org/python-demos/Calculator
The code for calling web service is as below :
NSString *requestString = [NSString stringWithFormat:
…
I have a Ladon service that currently uses one service module named register, behind that is code in services/register.py. Other frameworks, such as .NET and Java, will automatically compile & reload code/classes when the underlying physical file…
I'm trying to call the calculator example from
ladonize.org using this code.
I managed to get pysimplesoap to work with other external soap services and am trying to roll out my own soap service using ladon / python 2.7
The SOAP service works when…
i have written a python web service using ladon web services (http://ladonize.org) and i want to access the SOAP interface using Java and Axis2.
I have successfully tested the WS using python and the SUDS client library.
Calling a remote service…
I'm exposing web service using python ladon package and SOAP. I'm want to remember state between two method calls. Here is example code:
from ladon.ladonizer import ladonize
import logging
class Sum(object):
sum = 0
FORMAT = '%(name)s…
I am using to publish some API (soap) over the internet.
I would like to use nginx + uwsgi but I am in trouble:
I get this output browsing to the page offered by the uwsgi binary:
Traceback (most recent call last):
File…
i am trying to consuming SOAP web services with C#, and while it seems ok when using SOAPUI or even using Python with SUDS (i wanted to be sure it was not on the server side), when consuming it from C#, i always get null value (while an interception…
(Ladon) I use the command 'serve' and get a syntax error pointing to the 'serve' keyword, I've also tried substituting the 'serve' with 'testserve' because the -ctl script has notes talking about the name change but using 'testserve' also gives the…
I am trying to return 4 up to 100 rows from ladon/python but it is only returning the first row in the for loop. Currently it returns
EDIT: The For loop works if I just do
**for row in cursor:
RSOID = row.RSO_ID
…
I'm setting up a Ladon SOAP server, and can't get it to return lists at all.
Here's what I have:
class V1(object):
"""
This service returns events between two times for a given trackable.
"""
@ladonize(rtype=[ PORTABLE_STRING ])
…
i have a strange behaviour of a python script running through Apache/mod_wsgi/Ladon, when running it from a python shell, every thing is fine, on one machine everything is fine, but on the other the same script hang and it seems that it is…
I want to send a python list to my ladon service.
Consider the following python list
lst_col_title = [(1, 'Column1', 10, 'L'),(2, 'Column2', 15, 'L'),(3, 'Column3', 15, 'L'),(4, 'Column4', 10, 'L'),(5, 'Column5', 10, 'L')]
Is their any possible way…