Understanding SQL*Net

Contents Glossary Index Home Previous Next

Configuring the System to Use Your Application

In this release of SQL*Net OPEN, Oracle Network Manager cannot be used to configure applications you have developed using this API. You must configure SQL*Net yourself to recognize your application. This involves three steps:

SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =			
      (SID_NAME = chatsid)			/*your SID name*/
      (ORACLE_HOME = /usr/oracle)		/*your ORACLE_HOME name*/
      (PROGRAM = chatsvr)			/*the name of your server 	   						  program*/
    )

Note: There may be additional SIDs in the list as well, configured with Network Manager.

(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=unixhost)(PORT=1521)))

chat=(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=unixhost)
  (PORT=1521))(CONNECT_DATA=(SID=chatsid)))


Contents Glossary Index Home Previous Next