Tagged Questions
2
votes
5answers
4k views
error: can't start new thread
I have a site that runs with follow configuration:
Django + mod-wsgi + apache
In one of user's request, I send another HTTP request to another service, and solve this by httplib library of python.
...
1
vote
1answer
124 views
How do I post non-ASCII characters using httplib when content-type is “application/xml”
I've implemented a Pivotal Tracker API module in Python 2.7. The Pivotal Tracker API expects POST data to be an XML document and "application/xml" to be the content type.
My code uses urlib/httplib ...
1
vote
1answer
130 views
Sending mutlitple requests of httplib, raising traceback exceptions
Here is the code:
conn = httplib.HTTPConnection("127.0.0.1:8000")
conn.request("POST", "/api/job/", some_params, headers)
conn.close()
no problem with sending request to server
but if i use loop ...
1
vote
1answer
204 views
Django/httplib : transmitting request.raw_post_data with httplib
"AAaarg" ! Please HeLp !!!
Here is what I am trying to do ...
I have a Django site site1, which needs to access the API of another service site2. However, in order to do that, site1 needs to use its ...
1
vote
1answer
481 views
When I use httplib for my OAUTH in Python, I always get “CannotSendRequest” and then "
Traceback:
File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py" in get_response
92. response = callback(request, *callback_args, **callback_kwargs)
File ...
0
votes
3answers
46 views
gai error at /home [Errno -2] Name or service not known
per the example in the httplib docs:
>>> import httplib, urllib
>>> params = urllib.urlencode({'@number': 12524, '@type': 'issue', '@action': 'show'})
>>> headers = ...