hcl-bot
1
Hi,
Is there a reference somewhere desribing what minor codes actually mean when there is a DIIOP related failure?
I have the following Exception:
NotesException: Could not open Notes session: org.omg.CORBA.COMM_FAILURE: minor code: 6 completed: No
It’d be nice to what minor code means! Presumeably it means something to someone!
These are my DIIOP related settings in the Server Doc:
DIIOP setting in the Server Document:
Ports Tab > Internet Ports Tab > DIIOP tab
TCP/IP port number:63148
TCP/IP Port status: Enabled
Enforce Server Access Settings: No
Internet Protocols Tab > DIIOP Tab
Host Name/Address: 123.4.567.89
Any other settings I should set?
I attempt to connect thus:
Session notesSession = NotesFactory.createSession(“123.4.567.89:63148”, “UserName”, “password”);
Thanks for any input,
Terrence
hcl-bot
2
Subject: DIIOP and Minor Codes
You do have access to run Java/COM agents/applications, right ? With that assumption,
Change
Session notesSession = NotesFactory.createSession(“123.4.567.89:63148”, “UserName”, “password”);
to
Session notesSession = NotesFactory.createSession(“host”, “UserName”, “password”);
where host is the qualified DNS name. Try shutting down the DIIOP task and restarting it.
The actual error codes are from CORBA. Refer to following docs for more info on that :
http://www7b.software.ibm.com/wsdd/WASInfoCenter/infocenter/wasee_content/corbaio/ref/rcsem.htm
COMM_FAILURE errors are :
1 Unable to connect to the host and port specified in the object reference, or in the object reference obtained after location/object forward.
2 Error occurred while trying to write to the socket. The socket has been closed by the other side, or is aborted.
3 Error occurred while trying to write to the socket. The connection is no longer alive.
6 Unable to successfully connect to the server after several attempts.
HTH.
hcl-bot
3
Subject: RE: DIIOP and Minor Codes
Thank you very much, Seshagiri.