Message917

Author archon55
Recipients
Date 2004-12-28.17:39:04
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=1186138

Since you are using Jython why don't you use the java.net
classes like this:
>>> from java.net import *
>>> http_url=URL("https://www.verisign.com/")
>>> url_conn=http_url.openConnection()
>>> url_conn
sun.net.www.protocol.https.DelegateHttpsURLConnection:https://www.verisign.com/
>>>

Now you can use the I/O streams to communicate with the site.

mg
History
Date User Action Args
2008-02-20 17:17:18adminlinkissue998602 messages
2008-02-20 17:17:18admincreate