Recent content by MaximMonin

  1. M

    Parallel Computational Programming

    We use the fllowing approuch: 1. There is bgparam.cfg file which containts some rules about bg routine params and num-treads values: BGcount 3 uBGcount 10 APWcount 5 2. At the begining we run 1 thread and every minute this thread checks config file and decides what to do: run 1 more thread or...
  2. M

    Web Services Adaptor

    It is the same as you return temp-tables or datasets in progress 4gl. DEFINE temp-table xxx field index. DEFINE OUTPUT PARAMETER table for xxx. Progress actually uses write-xml statement when send answer through web service.
  3. M

    Web Services Adaptor

    I used ordinary relative path /wsa/wsa1. It works under web brower, with https or http protocol.
  4. M

    Web Services Adaptor

    Sorry, it soap address location, remove http://servername
  5. M

    Web Services Adaptor

    You have to edit servicename.wsdl file under webapps catalog on Linux. Find endpoint tag at the end of file, and delete ipaddress or host name. Leave only relative path, not absolute.
  6. M

    Web Services Adaptor

    you can deploy web servoce directlly on linux server through progress explorer. It is the same as deploying on local server. You do not need to do any changes in files generated by proxygen
  7. M

    Database Sensitivity...more like that....

    we used something like: RUN src/system/run_oscom.p ("sudo sh -c ""proshut ./db/account.db -C disconnect " + string (work-users1.id-proc) + """"). // for linux server part _connect table can be used to identify user names already connected to db.
  8. M

    Progress 9 to 10 conversion???

    1. we had issues cause some fields had name "today", "now". It is reserved in ABL10. It can be identified by code compilation. 2. In 10.1B and later 64 bit architecture and there some difference in PUT LONG statement. We used something like: &IF PROVERSION = '10.1A' &THEN &Scoped-define...
  9. M

    Web Services Adaptor

    default.props <?xml version="1.0" encoding="UTF-8"?> <ApplicationRuntimeProperties xmlns="urn:schemas-progress-com:WSAD:0008" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <runtimePropertyVersion>5</runtimePropertyVersion> <appServiceProtocol>AppserverDC</appServiceProtocol>...
  10. M

    Configuring Webservice

    There are some different tags in different versions of proxy gen. You can try edit wsm file manually before you deploy it. Easiest way to identify - export existing web service and check tags.
  11. M

    Web Services Adaptor

    Check your service Status It shoud be like this Dublicate wsa value is run time property.
  12. M

    Set CURRENT VALUE of a SEQUENCE

    current-value (seq-name) = value.
  13. M

    using webservices created in openedge in php

    download SoapUI tool and connect to progress web service within it. Check format for incoming queries and test web service. I use web service with flex only, not php. Do not think there is a big diffrence.
  14. M

    Active user/connection

    FOR EACH _Connect NO-LOCK WHERE _Connect-Usr NE ? AND (_Connect-Type EQ "REMC" OR _Connect-Type EQ "SELF" or _Connect-Type EQ "0" ) BREAK BY _Connect-Usr: IF _Connect-PID = ? THEN NEXT. IF _Connect-Type EQ "SELF" OR...
  15. M

    HELP: copy-lob to dynamic-fied

    try: def var lchar as longchar. COPY-LOB FROM FILE < file path > TO lchar. buf-hndl-TempTable:buffer-field(chField):FIELD-VALUE = lchar.
Top