Modifying the EnterpriseOne jde.ini File

Reference:

Because the iWay Application Adapter for J.D. Edwards EnterpriseOne uses XML for the transfer of information to and from EnterpriseOne, you must configure the EnterpriseOne environment to support XML. You can do this by modifying the EnterpriseOne jde.ini file.

To enable support for the XML List method, you must modify the EnterpriseOne jde.ini file accordingly, as described in Modifying the jde.ini File for XML List Support.


Top of page

Example: Modifying the jde.ini File for XML Support

The following is a sample of the modifications required to implement XML support on Windows NT. Add the following blocks of code:

[JDENET_KERNEL_DEF6]
;krnlName=CALL OBJECT KERNEL
;dispatchDLLName=jdekrnl.dll
;dispatchDLLFunction=_JDEK_DispatchCallObjectMessage@28
;maxNumberOfProcesses=10
;numberOfAutoStartProcesses=0
krnlName=CALL OBJECT KERNEL
dispatchDLLName=XMLCallObj.dll
dispatchDLLFunction=_XMLCallObjectDispatch@28
maxNumberOfProcesses=10
numberOfAutoStartProcesses=0
 
[JDENET_KERNEL_DEF15]
krnlName=XML TRANSACTION KERNEL
dispatchDLLName=XMLTransactions.dll
dispatchDLLFunction=_XMLTransactionDispatch@28
maxNumberOfProcesses=1
numberOfAutoStartProcesses=1

Note: The @28 and the underscore character "_" in the example above are for Windows NT only.

For more information on establishing your EnterpriseOne environment for XML support, see Setting the jde.ini File for XML in the J.D. Edwards Interoperability Guide.


Top of page

Example: Modifying the jde.ini File for XML List Support

The following is a sample of the modifications required to implement XML List support on Windows NT. Add the following blocks of code:

[JDENET_KERNEL_DEF16]
krnlName=XML List
dispatchDLLName=xmllist.dll
dispatchDLLFunction=_XMLListDispatch@28
maxNumberOfProcesses=3
beginningMsgTypeRange=5257
endingMsgTypeRange=5512
newProcessThresholdRequest=0
numberOfAutoStartProcesses=3

Note: The @28 and the underscore character "_" in the example above are for Windows NT only.


Top of page

x
Reference: DLL Extensions for Other Platforms

The following table lists different DLL extensions for other platforms.

 

XML List dispatchDLLName=

Call Object dispatchDLLName=

XML Trans dispatchDLLName=

AS400

XMLLIST

XMLCALLOBJ

XMLTRANS

HP9000B

libxmllist.sl

libxmlcallobj.sl

libxmltransactions.sl

SUN or RS6000

libxmllist.so

libxmlcallobj.so

libxmltransactions.so



Example: Modifying the jde.ini File for the List Retrieval Engine

To keep and manage repository files, the List Retrieval Engine uses a predefined folder as its system directory. This system directory should be configured in the jde.ini file as follows:

[LREngine]
System=C:\output
Repository_Size=20
Disk_Monitor=No

iWay Software