[Python] Esecuzione Servlet Remota con httplib
Facundo Batista
facundobatista a gmail.com
Lun 26 Nov 2007 15:11:17 CET
2007/11/26, pythonalex a email.it <pythonalex a email.it>:
> remota da un sorgente python (utilizzando httplib) avendo le seguenti
> informazioni :
> 1) URL servlet
> 2) parametri
>
> Qualcuno puņ suggerirmi come fare?
GET o POST?
In caso del GET, puoi fare:
urllib2.urlopen("http://il_tuo_server.it/servlet.py?a=1&b=2")
I caso del POST:
urllib2.urlopen("http://il_tuo_server.it/servlet.py", data="xxx")
Nel campo "data" ci sono i parametri a inviare per POST (puņ essere un
xml, "a=1&b=2"o altre cose).
Saluti,
--
. Facundo
Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
More information about the Python
mailing list