Search results

  1. S

    Bad coding or lack of skill?

    I received the daily "Progress Alert and Notification Service: OpenEdge" yesterday with the following 'solution': I believe it is time for some code rewriting if one needs to have more than 255 'or' statements inside a where at the same time. :rolleyes:
  2. S

    Time-source and database connection

    In my logs I have seen "** Database /database/sports2000 not connected. (1021)" for some time now without finding the problem. The problem was in my write trigger and the records was updated without problems. The database logs did not show anything unusual. Quiz - find the error :D...
  3. S

    Special replication requirement

    I have two databases which needs to be in syncronization with each other and I need read/write access on both of them at the same time. What is the best solution for this setup?
  4. S

    Xinetd, UDP and Progress

    Hi I have a customer that sends data to our server on a UDP port. I have created a config file in xinetd and it runs a script which calls a progress program. I am trying to read the data by readkey pause 0. inputstr = inputstr + chr(lastkey). But I only receives the first character in...
  5. S

    ProxyGen Web Service

    Hi I'm trying to create a webservice from a wsm file which I have created from ProxyGen. It works as long as I do not include the following lines. <PortTypeBindingSuffix userDefined="true"></PortTypeBindingSuffix> <ServiceSuffix userDefined="true"></ServiceSuffix> It throws "Unable...
  6. S

    OpenEdge Architect 10.2A03 Development

    Hi Is there any plugin that allow me to create some javadoc from our .p code? When coding in Java in eclipse you can write the beginning of a variable name and it will suggest the best match for you including the comments for the variable. Is this possible in Openedge? Example: DEFINE...
  7. S

    Bug in Progress?

    Could you please try the following code and let me know the result. message (if ' ' = '' then 'not OK' else 'OK'). message (if ' ' > '' then 'OK' else 'not OK'). Tried it on windows xp OpenEdge 10.2A02 and 10.1A, 9.0A and 9.1A. The code results to 'not OK' in...
  8. S

    From Eval version to full version

    Hi I have been testing the 10.2A using af eval version for some time now, and I am planning to upgrade from eval to full version. Do I need to reinstall 10.2A or is there some magical tool to apply the new license numbers?
  9. S

    SQL and triggers

    Hi We have been running with 4GL triggers for many years, and now we are investigating going to java instead. I know that I need special triggers for SQL, but does anybody have an idea on how to implement the "find" trigger in SQL? SQL (or JDBC) only have insert/delete/update triggers and...
  10. S

    SYSTEM ERROR: memory violation (49)

    I have a problem starting one of my databases on our test server (Suse 10.something). Database is a OpenEdge 10.0b04. Database 'test' crashed with memory violation error. When I try to truncate the db I receive the following 09:20:06 proutil -C truncate bi session begin for root on...
  11. S

    for each statement

    for each statement (solved/explained) Hi Girls and Guys, Simple question Should I expect this feature to work in the future? def buffer tmpCust for customer. def var i as int. for each tmpCust : i = i + 1. if i = 1000 then leave. /* (1)*/ end. message avail tmpCust tmpCust.name i...
  12. S

    Longchar

    def var cc as longchar no-undo. def var idx as int no-undo. do idx = 1 to 50000: cc = cc + string('1,'). end. message num-entries(cc,',') view-as alert-box. entry(35000,cc,',') = '!'. /* raises the error flag*/ message num-entries(cc,'!') view-as alert-box. I have tried it on 10.0b.04 ...
  13. S

    how to remove banner

    how to remove banner (solved) Hi I have created a progress program that runs through xinetd and that works without problems. The problem is that my program is talking to another process through a port and the other process cannot handle the banner that progress is outputting when connected...
  14. S

    OpenEdge Architect

    I'm running OpenEdge 10.2A in eclipse for testing the new functions in 10.2a. We have like 500 programs and 500 include files and it seems to me that OE cannot handle that amount. I connect to 6 different databases at the same time and even that none of the tables have the same name, OE marks...
Top