Simples Assim

Posts Tagged ‘Progress OpenEdge

Improvement to CamelEdge 1.0

leave a comment »

Written by Fernando Ribeiro

April 13, 2010 at 2:57 pm

Improvement to CamelEdge 1.0

leave a comment »

Written by Fernando Ribeiro

April 13, 2010 at 2:55 pm

Agents with the Progress OpenEdge Adapter for Sonic 10.1A

leave a comment »

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.

Written by Fernando Ribeiro

April 3, 2010 at 11:49 pm

Posted in Software

Tagged with ,

XML Attribute Order in Progress OpenEdge

leave a comment »

Written by Fernando Ribeiro

March 30, 2010 at 9:37 am

Posted in Software

Tagged with

Improvement to CamelEdge 1.0

leave a comment »

Written by Fernando Ribeiro

March 28, 2010 at 8:54 pm

Improvement to CamelEdge 1.0

leave a comment »

Written by Fernando Ribeiro

March 26, 2010 at 1:08 am

Startup Procedures in Progress OpenEdge AppServer

leave a comment »

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.

Written by Fernando Ribeiro

March 14, 2010 at 10:30 am

Posted in Software

Tagged with

Handling Errors in Menu Programs in ABL

leave a comment »

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".

http://communities.progress.com/pcom/docs/DOC-16295

Written by Fernando Ribeiro

March 7, 2010 at 9:15 pm

Posted in Software

Tagged with

ABL to XML Schema Mapping

leave a comment »

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/

http://fernandoribeiro.eti.br/2008/11/06/int-vs-integer/

Written by Fernando Ribeiro

November 2, 2009 at 11:13 am

Posted in Software

Tagged with ,

How to Manually Start/Stop Progress OpenEdge AppServer

leave a comment »

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.

Written by Fernando Ribeiro

October 15, 2009 at 11:07 pm

Posted in Technology

Tagged with