> I am trying to build a HTTP request that looks like:
> http://localhost/common/foxisapi.dll/tmsmail.x2.isapi
> ?<PROCESS%20sync=''%20schema=''%20class='replicateApplication.getChanges'%20/>
> Works in a browser.
>
> and now I am attempting to use HTTPConnection
> >>> conn = httplib.HTTPConnection("localhost")
> >>> print x
> %3CPROCESS%20sync%3D%27%27%20schema%3D%27%27%20class%3D
> %27replicateApplication.getChanges%27%20/%3E


At first glance, you left off most of the request :) Namely "
/common/foxisapi.dll/tmsmail.x2.isapi<http://localhost/common/foxisapi.dll/tmsmail.x2.isapi>
?"

And just included the encoded body.

--S
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to