This runs in the vanilla Python 2.4 interpreter on Win32 but not if I paste it 
into the Visual Studio 2005 (with IronPython VSSIP installed) IDE:
 
 
import urllib
from xml.dom import minidom
remoteSock = urllib.urlopen("http://10.2.5.28:18/PolicyGroupServerAsset.xml";)
#policyXml = remoteSock.read()
#print policyXml
policyXmlDoc = minidom.parse(remoteSock)
remoteSock.close()
print policyXmlDoc.toxml()
 
What steps should I take to convert this to something working?
 
Thanks.
 
_________________________________________________________________
Invite your mail contacts to join your friends list with Windows Live Spaces. 
It's easy!
http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to