Search results

  1. B

    Special characters in Webspeed

    Thanks, that seems to work well! Any idea why it could have been set to utf-8, though the developers must have known that those kind of characters will be many times entered when certain field values are prompted?
  2. B

    Special characters in Webspeed

    Hi, I have some problems with special characters (é, á, à) when displaying texts from the text field of a database table. My code looks like this: FUNCTION f1 RETURNS LOGICAL (INPUT cString AS CHARACTER): {&OUT} '<center>' + cString + '</center>' SKIP. END. The cString gets the value from...
  3. B

    Shared memory access permission denied (1136)

    Thank you, yes, I saw similar descriptions, but in our system this setup was there. Finally I had to restart the db's and it resolved the problem. (It was also recommended on one of the forums.) Regards, Peter
  4. B

    Shared memory access permission denied (1136)

    Hi, We have changed a .p program, from now on it connects to two databases instead of one. I myself as administrator can run the program fine, but the users get the error message: Shared memory access permission denied (1136) I read some articles that I should change permissions of db files...
  5. B

    "Ambiguous table" message expected

    Yes, I meant like that. I didn't think that it behaves in that way, thanks for confirming. Regards, Peter
  6. B

    "Ambiguous table" message expected

    Yes, I'm connected to both db's when compiling. The are no buffers defined in the code. But is it possible, that table1 was referred to previously with one of the db's, and next time the same db will be interpreted as default?
  7. B

    "Ambiguous table" message expected

    Hi, We have a batch working for a long time, which uses one database (db1). Now we want to connect to another db (db2), in the calling .p program I properly deployed it. My problem is that the compiler doesn't indicate any problem, when in certain cases the table names are referred without the...
  8. B

    Record creation order

    Many thanks, actually I just wanted to hear something like this as a confirmation. Regards, Peter
  9. B

    Record creation order

    I mentioned that there is a primary key, which is date + time. Because it's the same in both cases, I supposed the records will be stored on a chronological basis. Furthermore I took several tests, creating records with identical keys, and they were selected always in the correct order (how they...
  10. B

    Record creation order

    Hi, I'm using Progress 9.1E database in Sun Solaris. I encountered a situation which I cannot explain, why it happened. There is a program code looking like this (simplified somehow): ON "F10" OF query DO : IF table1.status = "B" THEN DO: table1.status = "C". DO: CREATE t_table2...
  11. B

    SetCookie and Apache Timeout

    Hi,Can anyone let me know how webspeed session is impacted by the Timeout value of the Apache configuration (in httpd.conf)? The session of our webspeed application expires after 15 minutes (set up by SetCookie parameters) theoretically and most of the times practically as well, but some times...
  12. B

    Blank screen in webspeed

    Thanks for the answer, but I have no idea, how these functions work in Progress (such as getSessionAttribute), what the parameters should be exactly. Furthermore where to put this fragment? In outputHeader perhaps?
  13. B

    Blank screen in webspeed

    I might have not been specific enough. So I suppose the problem comes from cookies, and I would like to know if I can influence this situation with coding or not.Regards,Peter
  14. B

    Blank screen in webspeed

    Hi,When I use a webspeed application and the session expires, I get a blank screen instead of the login page. Is this a common feature or can I redirect the user to the login page somehow?Progress 9.1ESun SolarisThanks,Peter
  15. B

    Database backup issue

    Sorry, forget about it, meanwhile it turned out that the files were overwritten just in principle... Nothing magic has happened.
  16. B

    Database backup issue

    Hi, We have a DR test with Progress applications. The same method is used every year: the entire file content of /progress directory is copied from the production server to the DR server. So far the test has been successful, but now we have the following issue. Though the Progress db can be...
  17. B

    server or the system has no more resources

    The -n parameter is set to 9. But it's been the same for several years, and we haven't faced this issue so far. Anyhow, I restarted the database and it resolved the problem. Thanks to all of you for your help. Regards, Peter
  18. B

    server or the system has no more resources

    Thanks, great idea, the db log on the remote server proves that the problem was with accessing db2. 15:06:20 SRV 4: Login usernum 13, userid dbapro, on <server103> batch. (742) 15:06:20 SRV 4: Received RECONNECT from WTB 15:06:20 SRV 4: Previous message sent on behalf of user 13...
  19. B

    server or the system has no more resources

    Hi, I have the same problem, but none of the alternatives listed above explains to me why we encountered this issue. As far as I know neither Kernel parameters nor startup parameters have been changed recently, despite from day to day broker became inactive. I can see the following logs...
  20. B

    Importing xml

    Just found a sample code, which works fine, but I have an error message related to prefixes: X-NODEREF or X-DOCUMENT LOAD got an error: FATAL ERROR: file '<filename>.xml', line '1', column '83', message 'The prefix 'xsdLocal1' has not been mapped to any URI'. The input file looks like...
Top