home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!know!cass.ma02.bull.com!mips2!news.bbn.com!olivea!sgigate!sgiblab!swrinde!zaphod.mps.ohio-state.edu!uwm.edu!ogicse!das-news.harvard.edu!spdcc!merk!esplanade!robertl
- From: Robert_La_Ferla@hot.com
- Newsgroups: comp.sys.next.programmer
- Subject: Re: Help with Distributed Objects!
- Message-ID: <1992Nov13.131917.1209@hot.com>
- Date: 13 Nov 92 13:19:17 GMT
- References: <1992Nov13.001122.4776@leland.Stanford.EDU>
- Sender: robertl@hot.com
- Reply-To: Robert_La_Ferla@hot.com
- Organization: Hot Technologies
- Lines: 34
-
- In article <1992Nov13.001122.4776@leland.Stanford.EDU>
- shiva@vega.Stanford.EDU (Marcos Javier Polanco) writes:
- >
- > Hi.
- > I cannot get callback to work. In my application, there is a server
- which
- > holds proxy objects from client processes. When clients make calls to
- the
- > server, these proxies may be messaged, resulting in a possible callback.
- > At that point, I get the following message in the console:
- >
- > Nov 12 14:17:20 rigel Snooper[910]: Unknown error code 11013 in
- > NXReportError
-
- It's timeout error. From NXProxy.h:
-
- typedef enum {
- NX_REMOTE_EXCEPTION_BASE = 11000,
- NX_couldntSendException = 11001,
- NX_couldntReceiveException = 11002,
- NX_couldntDecodeArgumentsException = 11003,
- NX_unknownMethodException = 11004,
- NX_objectInaccessibleException = 11005,
- NX_objectNotAvailableException = 11007,
- NX_remoteInternalException = 11008,
- NX_multithreadedRecursionDeadlockException = 11009,
- NX_destinationInvalid = 11010,
- NX_originatorInvalid = 11011,
- NX_sendTimedOut = 11012,
- NX_receiveTimedOut = 11013,
- NX_REMOTE_LAST_EXCEPTION = 11999
- } NXRemoteException;
-
- Robert La Ferla
-