On Tue, Oct 12, 2010 at 07:44:40PM +0900, murugadoss wrote:
>  Sample Code:
>       >>>  import httplib
>       >>> conn = httplib.HTTPSConnection("internet server")
>       >>> conn.request("GET","/'*.zip")
> 

I guessing you are using a correct "internet server" correctly.

>>> conn = httplib.HTTPSConnection('myhostname.domain',port) 
>>> conn.request("GET","/") # Lets first do a simple GET

If you have to get *.zip files, you might have to pass the proper
headers in the first stmt. 

> On sending request for getting files, python throws "segmentation fault". I

Segmentation fault is funny!, It would help if you paste the full error
message or traceback

-- 
Senthil
_______________________________________________
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers

Reply via email to