Re: method being called twice?

2011-02-03 Thread Karen Tracey
It's hard to provide useful help when we see only part of the story, and that story changes over time (e.g. the line of code you identify in the dpaste posting as being where the error occurs does not match the line of code seen in the first traceback you posted). Since you are dealing with a 3rd

Re: method being called twice?

2011-02-03 Thread Burhan
The log entries for a session are here: http://dpaste.com/380749 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsu

Re: method being called twice?

2011-02-03 Thread Burhan
Thank you all for your comments. Perhaps I should clarify: 1. I'm not really interested in what is in the querystring, I'm only interested in what is being sent as part of the POST request. 2. The method's full body is posted here: http://dpaste.com/380708; the method "breaks" at line 8 with t

Re: method being called twice?

2011-02-02 Thread Daniel Roseman
On Wednesday, February 2, 2011 2:27:16 PM UTC, Burhan wrote: > > Hello, I have a strange problem which I am unable to figure out. > > I have a method that is POSTed some information from a third-party > payment gateway. The request is sent to payment-result.jsp? > PaymentID=342 (where 342 is any

Re: method being called twice?

2011-02-02 Thread Tom Evans
On Wed, Feb 2, 2011 at 2:27 PM, Burhan wrote: > Hello, I have a strange problem which I am unable to figure out. > > I have a method that is POSTed some information from a third-party > payment gateway. The request is sent to payment-result.jsp? > PaymentID=342 (where 342 is any integer). > > My U

Re: method being called twice?

2011-02-02 Thread Karen Tracey
On Wed, Feb 2, 2011 at 9:27 AM, Burhan wrote: > # various other calls, which redirect to a template I think you need to be a little more specific about what exactly is done there for anyone to be able to provide useful help on this one. Karen -- http://tracey.org/kmt/ -- You received this

method being called twice?

2011-02-02 Thread Burhan
Hello, I have a strange problem which I am unable to figure out. I have a method that is POSTed some information from a third-party payment gateway. The request is sent to payment-result.jsp? PaymentID=342 (where 342 is any integer). My URL pattern is: (r'^payment-result.jsp$', result) The meth