Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to debug my app step-by-step to see what happens AFTER the form submission (only via POST).

The problem is the URL after submission is the same than the one before, and I do not know any way to tell the debugger to wait for the submission of the form...

Any ideas ? Thanks in advance !

share|improve this question
you need to post a lot more information. Are you using an IDE? What language are you working in? – cbrulak Jul 12 '10 at 17:08
1  
hi, I guess the title is explicit enough ;) Netbeans ? Rails ? – Rolf Jul 13 '10 at 8:04

1 Answer

up vote 1 down vote accepted

Take a look at the Guides of Ruby on Rails, there is a description how to debug rails:

http://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-ruby-debug

share|improve this answer
thanks, exactly what I needed :) – Rolf Jul 13 '10 at 9:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.