#11091: SSL POST hangs if view function does not use POST object
-----------------------------+----------------------------------------------
 Reporter:  bensmith         |       Owner:  nobody    
   Status:  new              |   Milestone:            
Component:  Template system  |     Version:  1.0       
 Keywords:  ssl form post    |       Stage:  Unreviewed
Has_patch:  0                |  
-----------------------------+----------------------------------------------
 Here's how to reproduce:

 1. Setup a simple view function.

 def myview(request):
     return render_to_response('mytemplate.html')

 2. Write a simple form containing one named value that POSTs to the view:
 <form method="POST" action="https://www.mysite.com/myview";>
   <input type="hidden" name="param" value="value"/>
   <input type="submit"/>
 </form>

 3.  Submit the form

 The browser will send the POST but no data will be returned.
 ssl_access.log and ssl_error.log will not have any record of the POST.

 You can also do the submit with curl like this:

 curl -v -d test=value https://www.mysite.com/myview

 curl will just hang after telling you that it's submitted the request.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/11091>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to