RB WebTier and IIS User Accounts Question: “I am trying to configure and test the RB WebTier using IIS. When I try to test the web tier via my web browser an Internal Server 500 Error page is displayed.” Answer: This is generic error page returned by IIS. One cause of this error is that Full Article…
Search the Wiki
How To…Determine Web SessionID
Question “How can I determine the SessionID for each web request?” Solution The following example shows how to use the webTier and WebSessionManager to determine the SessionID for each request. Download: WebTierSessionID.zip Sample Delphi code: uses rsWebRequest, rsWebSessionManager; procedure TWebModule1.WebModule1WebActionItem1Action(Sender: TObject; Request: TWebRequest; Response: TWebResponse; var Handled: Boolean); var lWebRequest: TrsWebRequest; begin // create a Full Article…
How To…Deploy to IIS7
Question “How can I deploy the WebTier to IIS7?” Deploying the WebTier to IIS7+ The following is a supplement to the Server Edition Developer’s Guide, installed to …RBServer\Developer’s Guide\RBServer.pdf. IIS 7 security is tighter than prior versions of IIS. By default ISAPI modules are /not/ permited to run. Use the following steps to configure IIS Full Article…