Results 1 to 40 of 123

Thread: VB6 FastCGI Server

Threaded View

  1. #29
    PowerPoster
    Join Date
    Sep 2012
    Posts
    2,083

    Re: VB6 FastCGI Server

    The third small question:

    CFcgiApp
    Code:
    Private Sub IFcgiApp_ProcessRequest(po_Request As VbFcgiLib.CFcgiRequest, po_Response As VbFcgiLib.CFcgiResponse)
     ...
     ...
     ...
    
    Final:
     If po_Response.IsFinished Then
        po_Response.Finished
     end If
    
    end Sub
    Sometimes we may forget to call po_Response.Finished, and if a IsFinished property (similar to IBuilder.IsFinished) is provided for CFcgiResponse, then we can execute the following code at the end of the sub:

    Code:
     If po_Response.IsFinished Then
        po_Response.Finished
     end If
    Last edited by dreammanor; May 7th, 2018 at 06:43 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width