[EMAIL PROTECTED] wrote: > Situation is this: > 1) must write application that does the following: > a) creates an xml document, the contents of which, is a request > transaction > b) send xml document to destination; I am assuming that a process > at destination side processes the request and sends back a response > c) the application I'm writing must receive response and then > examine contents of response > 2) hope to write client application in python > 3) was provided VB code sample that does steps 1a, 1b and 1c; the > sample code is: > > ' <section of code that builds the string sXML; the contents of which > is a request transaction> > set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP") > 'Bank table image address field, location of Comm Admin. > sServer = Session("ImageAddress") > 'NT AUTH > ' note: I believe the next 2 lines in this post are really one line in > VB code that wrapped > ' because they didn't fit on one line in the post > objXML.open > "POST",sServer,false,Session("WebServerUserAuth"),Session("WebServerPassword") > objXML.send sXML > sXMLRs = objXML.responseText >
This code is dealing with XMLHTTP request. -- bruno desthuilliers python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for p in '[EMAIL PROTECTED]'.split('@')])" -- http://mail.python.org/mailman/listinfo/python-list