Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6947009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:38:18+00:00 2026-05-27T13:38:18+00:00

I am new to Twisted and I can’t understand why do I get this

  • 0

I am new to Twisted and I can’t understand why do I get this error while running my script.\

Basically, the script is composed of 2 pages, the first one is a HTML form that calls itself execute a blocking method and display the results. When requests are sent to the server simultaneously I got this error:

exceptions.RuntimeError: Request.write called on a request after Request.finish was called

Do you have any idea where it can come from ?

class FormPage(Resource):    
    def render_GET(self, request):
        return
               <html>
                  <body>
                      <form method="POST">
                          <input name="the-field" type="text" />
                          <input type='submit' name='Get udl' />
                      </form>
                  </body>
               </html>

    def render_POST(self, request):
        deferred= deferToThread(my_blocking_method, arg1, arg2)
        deferred.addCallback(self.print_success, request)
        deferred.addCallback(self.print_failure, request)
        return NOT_DONE_YET

    def print_success(self, result, request):
        request.write('Request executed successfully')
        request.finish()


   def print_failure(self, err, request):
        request.write(str(err))
        request.finish()      

def run()
    root = Resource()
    root.putChild("form", FormPage())
    factory = Site(root)
    reactor.listenTCP(8880, factory)
    reactor.run()
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T13:38:19+00:00Added an answer on May 27, 2026 at 1:38 pm

    I finally found the solution. The code has to be modified as follow.\
    The line with the second addCallback needs to be changed to addErrback.

    class FormPage(Resource):    
        def render_GET(self, request):
            return
                <html>
                    <body>
                          <form method="POST">
                              <input name="the-field" type="text" />
                              <input type='submit' name='Get udl' />
                          </form>
                      </body>
                   </html>
    
        def render_POST(self, request):
            deferred= deferToThread(my_blocking_method, arg1, arg2)
            deferred.addCallback(self.print_success, request)
            deferred.addErrback(self.print_failure, request)
            return NOT_DONE_YET
    
        def print_success(self, result, request):
            request.write('Request executed successfully')
            request.finish()
    
    
        def print_failure(self, err, request):
            request.write(str(err))
            request.finish()      
    
        def run()
            root = Resource()
            root.putChild("form", FormPage())
            factory = Site(root)
            reactor.listenTCP(8880, factory)
            reactor.run()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi Guys ! I'm still discovering Twisted and I've made this script to parse
New to node. Can somebody help me understand how to use/configure r.js with coffeescript
Im new to Twisted. Why is it printing render() twice? I know if I
I tried urllib{2}, pycurl and I'm looking at twisted's new http client. But: I
New Question I am looking for a way in Javascript to get the parent
New to javascript, but I'm sure this is easy. Unfortunately, most of the google
new_story GET /story/new(.:format) {:action=>new, :controller=>stories} edit_story GET /story/edit(.:format) {:action=>edit, :controller=>stories} story GET /story(.:format) {:action=>show,
New to all this so forgive my ignorance. I am trying to figure out
new to JBoss and am configuring some applications. I know how to do this
I'm trying to make a simple TCP server using Twisted ,which can do some

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.