The Comet Gateways

From CometWiki

(Difference between revisions)
Jump to: navigation, search
Line 51: Line 51:
|  2
|  2
|  Sort
|  Sort
-
gateway
+
gateway
|  included
|  included
|  included
|  included
Line 69: Line 69:
|  row 2, cell 3
|  row 2, cell 3
|
|
 +
|The Winsock gateway provides a way for IB applications to communicate over the Internet using industry-standard application-layer protocols. Introduced with Comet 2005, the Comet Email Printer provides a simple method for sending email from your Comet app.
 +
 +
|-
 +
|  row 2, cell 1
 +
|  row 2, cell 2
 +
|  row 2, cell 3
|
|
-
|}
+
|The XAP gateway provides advanced Common Gateway Interface processing, and offers a way to create interactive web pages and eComet applications. XAP technology is patent pending. The many features of the XAP gateway are described in the eComet tutorial.
 +
 
 +
 
 +
|-

Revision as of 10:29, 23 May 2009

Comet Gateways There are several gateways available in Comet98 and Comet2000. These gateways provide access to features that are external to Comet, such as a high-speed sorting function, Internet application-layer protocols and advanced Common Gateway Interface processing, ODBC data sources, the serial port on a PC, and an internal fax/modem.

There are two basic steps for using a gateway: configuration and programming. The configuration step is accomplished with the [GATEWAYS] section in the INI file (which is processed by the SYSGEN program). Each configured gateway is listed in sequence. For example:

[GATEWAYS]

Gateway = 2,0;    Sort driver gateway     (gateway G00)
Gateway = 3,0;    Winsock gateway         (gateway G01)
Gateway = 4,0;    XAP gateway (eComet)    (gateway G02)
Gateway = 5,0;    ODBC gateway            (gateway G03)
Gateway = 6,0;    Serial gateway          (gateway G04)
Gateway = 7,0;    Universal gateway (fax) (gateway G05)

The programming step starts with opening a specific gateway device. For example, the following statement opens the Winsock gateway shown in the above [GATEWAYS] configuration:

OPEN (20) “G01”  ! open Winsock gateway

Note: The Reporter automatically generates the IB code to open the sort gateway, and the eComet Extensions automatically open the XAP gateway and assign the logical unit numbers to it.


For the other types of gateways, here is a general-purpose IB routine that shows how to locate and open a specific type of gateway on LUN (1). In the following example, the program searches for a type 6 gateway (serial gateway), which is signified by the ‘@06@’ returned by the DSTAT function.

length 3.0 & local  I
length   3 & local  Ga teName$
Open.Gateway:
 print(0) 'Opening Gateway . . .'
  for I = 100 TO 199 
        GateName$ = 'G' + SUB(STRIP(STR(I)), 2, 2) 
  if SUB(DSTAT(GateName$, excp=Try.Next.Gateway), 4, 1) EQ '@06@'_
        goto Found.Gateway
Try.Next.Gateway:
  next I
  print(0) 'Cannot Locate Gateway.'
  goto Abort
Found.Gateway:
  open(1) GateName$
  print(0) 'Gateway found as ';GateName$
  return

The following chart shows each type of gateway, whether it is available in Comet98 or Comet2000 (and whether it is included with the base level or available as a add-on product), and describes its basic features. There are also links to documentation and sample programs.

.
Type Name Comet98 Comet2000 Description
2 Sort

gateway

included included The sort driver gateway provides an efficient sorting method for both the Reporter and your IB applications. If the data to be sorted takes up less than 64K bytes, the sort driver performs the sort function in memory, and offers the fastest sort available on a Comet system. For data greater than 64K, the sort driver performs it's sorting using temporary disk files (either RAM or hard disk).


You need to configure one sort driver gateway for each user performing sorting operations simultaneously. We suggest configuring one sort gateway for each Reporter user. Each configured sort driver gateway requires 64K of system memory above and beyond the other memory requirements of Comet. Additionally, if one or more sort driver gateways are configured, the number of partitions that can be configured for a Comet system is reduced by 1.


For information on using the sort gateway from within an IB program, see the sort gateway section in the MoreThanBasic documentation.

row 2, cell 1 row 2, cell 2 row 2, cell 3 The Winsock gateway provides a way for IB applications to communicate over the Internet using industry-standard application-layer protocols. Introduced with Comet 2005, the Comet Email Printer provides a simple method for sending email from your Comet app.
row 2, cell 1 row 2, cell 2 row 2, cell 3 The XAP gateway provides advanced Common Gateway Interface processing, and offers a way to create interactive web pages and eComet applications. XAP technology is patent pending. The many features of the XAP gateway are described in the eComet tutorial.


Personal tools