home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / next / programm / 7221 < prev    next >
Encoding:
Internet Message Format  |  1992-11-14  |  1.6 KB

  1. 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
  2. From: Robert_La_Ferla@hot.com
  3. Newsgroups: comp.sys.next.programmer
  4. Subject: Re: Help with Distributed Objects!
  5. Message-ID: <1992Nov13.131917.1209@hot.com>
  6. Date: 13 Nov 92 13:19:17 GMT
  7. References: <1992Nov13.001122.4776@leland.Stanford.EDU>
  8. Sender: robertl@hot.com
  9. Reply-To: Robert_La_Ferla@hot.com
  10. Organization: Hot Technologies
  11. Lines: 34
  12.  
  13. In article <1992Nov13.001122.4776@leland.Stanford.EDU>  
  14. shiva@vega.Stanford.EDU (Marcos Javier Polanco) writes:
  15. > Hi.
  16. > I cannot get callback to work. In my application, there is a server  
  17. which  
  18. > holds proxy objects from client processes. When clients make calls to  
  19. the  
  20. > server, these proxies may be messaged, resulting in a possible callback.  
  21. > At that point, I get the following message in the console:
  22. > Nov 12 14:17:20 rigel Snooper[910]: Unknown error code 11013 in  
  23. > NXReportError
  24.  
  25. It's timeout error.  From NXProxy.h:
  26.  
  27. typedef enum  {
  28.     NX_REMOTE_EXCEPTION_BASE = 11000,
  29.     NX_couldntSendException = 11001,
  30.     NX_couldntReceiveException = 11002,
  31.     NX_couldntDecodeArgumentsException = 11003,
  32.     NX_unknownMethodException = 11004,
  33.     NX_objectInaccessibleException = 11005,
  34.     NX_objectNotAvailableException = 11007,
  35.     NX_remoteInternalException = 11008,
  36.     NX_multithreadedRecursionDeadlockException = 11009,
  37.     NX_destinationInvalid = 11010,
  38.     NX_originatorInvalid = 11011,
  39.     NX_sendTimedOut = 11012,
  40.     NX_receiveTimedOut = 11013,
  41.     NX_REMOTE_LAST_EXCEPTION = 11999
  42. } NXRemoteException;
  43.  
  44. Robert La Ferla
  45.