Posts Tagged ‘Progress OpenEdge’
Improvement to CamelEdge 1.0
Improvement to CamelEdge 1.0
Agents with the Progress OpenEdge Adapter for Sonic 10.1A
Although it is not mentioned in the documentation, you need to add listeners to your service instances to use multiple agents at the same time.
Thanks to Régis for the original post.
XML Attribute Order in Progress OpenEdge
Improvement to CamelEdge 1.0
Improvement to CamelEdge 1.0
Startup Procedures in Progress OpenEdge AppServer
They need to take the following parameter:
DEF INPUT PARAM <Any Name> AS CHAR NO-UNDO.
Refer to page 2-8 of the OpenEdge Application Server: Developing AppServer Applications guide for details.
Handling Errors in Menu Programs in ABL
Caller.p
DEF INPUT PARAM p-int AS INT NO-UNDO.
CASE p-int:
WHEN 1 THEN DO:
RUN Callee.p NO-ERROR.
END.
WHEN 2 THEN DO:
RUN Callee.p NO-ERROR.
END.
END CASE.
IF ERROR-STATUS:ERROR THEN
RETURN RETURN-VALUE.
Callee.p
RETURN ERROR "An error has occured".
ABL to XML Schema Mapping
| ABL | XML Schema |
|---|---|
| CHARACTER | string |
| DATE | date |
| DATETIME | date |
| DATETIME-TZ | None |
| DECIMAL | decimal |
| INT64 | long |
| INTEGER | int |
| LOGICAL | boolean |
| MEMPTR | base64Binary |
http://fernandoribeiro.eti.br/2009/06/14/working-with-time-zones/
How to Manually Start/Stop Progress OpenEdge AppServer
AdminServer
Refer to page B-17 of the OpenEdge Application Server: Administration guide.
Brokers
Refer to page B-4 of the OpenEdge Application Server: Administration guide.
NameServer
Refer to page B-14 of the OpenEdge Application Server: Administration guide.

