Recent content by Primvs

  1. Primvs

    Timeout on Session logon using TOracleSessionPool

    Hey! I am using TOracleSessionPool in a service. It has Min and Max properties defined. When there are Max sessions used and another request for session arrives the new request is stucked in session.Logon . I wonder if there's any way within DOA session/session pool settings I could define the...
  2. Primvs

    Problems using TOracleSessionPool

    Hi. I added following line in my project initialization: OracleCI.UseSingleEnvironment:= False; And things are now running normally. Is this the correct procedure for using DOA in multithreaded applications? Greetings, Primoz
  3. Primvs

    Problems using TOracleSessionPool

    Forgot to add something: Session I'm working on in command functions is the one acquired with function TdmdData.aquireOraSession and released with procedure TdmdData.releaseOraSession(ASession: TOracleSession); It is stored in same object that contains these command functions (...
  4. Primvs

    Problems using TOracleSessionPool

    Hey! I'm writting a CMS service. It has only one command (Request). It gets an XML parameter which contains a command (getSearchResults/saveStatistics/...) and parameters for executing that command. Request: - first acquires session - using function I've sent before - parses XML parameter to...
  5. Primvs

    Problems using TOracleSessionPool

    Hi! I'm having major problem using TOracleSessionPool. I created Homogen. Session pool for Max. 25 Sessions. It is being used in a service. Each time I get a request I acquire Session for this request using following code: function TdmdData.aquireOraSession: TOracleSession; begin Result :=...
Back
Top