Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   HTTPS request (http://www.velocityreviews.com/forums/t535001-https-request.html)

ashish 09-04-2007 06:01 AM

HTTPS request
 
Hi ,

I want to send HTTPs put request to the server .Can any one help me how
to do that .

I am using this code

import httplib
from group import *

class HTTPS:


def __init__(self,ip,port=443):

self.ip=ip
self.port=port

self.conn = httplib.HTTPSConnection(str(self.ip))

def send_request(self,method,uri,data=None,headers=Non e):


self.conn.request(method,uri,data,headers)

if __name__=="__main__"

http_obj=HTTPS('10.51.26.203')
headers={"Content-type": "application/auth-policy+xml","Accept":
"text/plain"}
data="some xml doc"
http_obj.send_request('PUT',uri,data,headers=heade rs)


But it dumps core where ever i run this.Please tell me where i am going
wrong.

Regards
Ashish



All times are GMT. The time now is 01:59 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57