Re: POST from external site

2010-02-22 Thread Tim Shaffer
What does the HTML for the Django-generated form look like? What does the HTML for the non-Django-generated form look like? Are you using Django Cross Site Request Forgery protection? On Feb 22, 12:27 pm, kkerbel wrote: > Let me further clarify...when I post using django it

Re: POST from external site

2010-02-22 Thread kkerbel
Let me further clarify...when I post using django it works as expected, meaning I have another view that which processes a new form I submit from django. I wrote a standalone html form on my desktop and tried submitting to the view and it still does not work. On Feb 22, 11:17 am, kkerbel

POST from external site

2010-02-22 Thread kkerbel
I'm attempting to write a listener page which will take POST variables sent from an external payment site to verify whether payment was successful or not. Here is the view: def results(request): if request.method == 'POST': test = request.POST.get('pmt_status')