Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12114
  • Joined

  • Last visited

  • Days Won

    805

Everything posted by Farshad Mohajeri

  1. So problem is related to field name which is "_S_ID" ?
  2. In above example session ids were the same.
  3. Is this a session with working grids?
  4. Is this your session id? Can you check by looking at web page source?
  5. Can you please check Request Headers for GET request to see if a parameter named _S_ID is there?
  6. We may add an option to make sending session id through GET headers optional.
  7. Yes, it happens because Sessions ID is missing in GET request. Starting from build 1574 session id is embedded in HTTP headers instead of being part of the URL. It seems that proxy server doesn't pass HTTP headers for GET requests.
  8. Hello, Do all dbgrids in your application work normally?
  9. You must put PDF file either under application files folder or application cache folder. Please see our PDFViewer demo.
  10. Hi, These paths are automatically added by the installer.
  11. It depends on account your app is running. There is no difference between a unigui app & other Delphi apps. For Windows Service and IIS ISAPI check the account which is used to run your app. For example, normally it is Local System for Windows Services.
  12. It is Delphi behavior. The last added unit will take precedence. You must make sure VCL.Graphics is added after Windows unit in your Units list.
  13. Please specify the media you have used to install RAD Studio. Have you used the official ISO or the Web installer?
  14. Hi, As soon as you run HyperServer it will automatically update the build number in the CFG file.
  15. Make sure your D12 version is the latest release published by Embarcadero.
  16. package uniTools29; {$R *.res} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS OFF} {$BOOLEVAL OFF} {$DEBUGINFO OFF} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS OFF} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO OFF} {$SAFEDIVIDE OFF} {$STACKFRAMES OFF} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE RELEASE} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'FMSoft uniTools Library'} {$RUNONLY} {$IMPLICITBUILD OFF} requires rtl {$ifndef MSWINDOWS} ,uniPlatform {$endif} ; contains {$ifdef MSWINDOWS} InstDecode in 'InstDecode.pas', CPUID in 'CPUID.pas', DDetours in 'DDetours.pas', {$endif} uniStrUtils in 'uniStrUtils.pas', uniWinUtils in 'uniWinUtils.pas', uniLogger in 'uniLogger.pas', uniStreamer in 'uniStreamer.pas', uniSimpleEnc in 'uniSimpleEnc.pas', uniDateUtils in 'uniDateUtils.pas', uniZLibExApi in 'uniZLibExApi.pas', uniZLibEx in 'uniZLibEx.pas'; end. Hello, The DPK file for uniTools29 library should look like this.
  17. Thanks Marlon. Another new feature is that you can have separate Persistent Nodes for each application to perform background tasks specifics to that application.
  18. Our license terms don't allow this. I wanted to admire your work, but I can not do that because you are using a pirated copy to develop your applications.
  19. It seems that slow down occurs when peak request is above 300. It indicates that requests are coming faster than the speed system can process them. It can be the database back-end which is not able process too many concurrent requests as fast as it must be done.
  20. It can happen when incoming traffic is faster than what your system can handle in a timely manner. Looking at above attached pic I can say that Idle Secs is always 0 which means there's a fast rate of incoming requests which means server and the related DB services never become idle. Can you also send the SS of the Resources tab?
×
×
  • Create New...