clorb-devel Mailing List for Common Lisp ORB
Status: Alpha
Brought to you by:
lenst
You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(10) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2002 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
1
|
2
|
3
(1) |
4
|
5
|
|
6
|
7
|
8
|
9
|
10
(2) |
11
|
12
|
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
|
27
|
28
|
29
|
30
|
31
|
|
|
|
From: Eric M. <ema...@ma...> - 2001-05-10 12:17:50
|
>>>>> "ls" == Lennart Staflin <le...@ly...> writes: ecm> However, the ir.dump file doesn't contain any definitions for ecm> exceptions in the IDL interfaces, so I still get calls to ecm> IR-LOOKUP-ID and thus to the external IR whenever an exception ecm> needs to be resolved. Is the problem in IR-ADD-ALL? ls> Yes, it does not recurese into interfaces and it does not store ls> the typecodes into the iir correctly. I have commited a fixed ls> version of loadup.lisp into the sourceforge CVS. the new version works, many thanks. BTW, in clorb-options.lisp the variable *host* still defaults to "127.0.0.1"; I assume this won't work when sending an IOR to a distant machine. I use ,---- | (defparameter *host* | #+(or cmu sbcl) | (unix:unix-gethostname) | #+clisp | (let ((mi (machine-instance))) | (subseq mi 0 (position #\Space mi)))) `---- -- Eric Marsden <URL:" rel="nofollow">http://www.laas.fr/~emarsden/> |
|
From: Lennart S. <le...@ly...> - 2001-05-10 06:32:21
|
Eric Marsden wrote: > I would like to use CLORB only with a local interface repository. I > have created an ir.dump file with > > (download-ir) > (save-ir) > > and then during application initialization I read the repository with > > (load-ir) > > However, the ir.dump file doesn't contain any definitions for > exceptions in the IDL interfaces, so I still get calls to IR-LOOKUP-ID > and thus to the external IR whenever an exception needs to be > resolved. Is the problem in IR-ADD-ALL? Yes, it does not recurese into interfaces and it does not store the typecodes into the iir correctly. I have commited a fixed version of loadup.lisp into the sourceforge CVS. //Lennart |
|
From: Eric M. <ema...@ma...> - 2001-05-03 13:07:45
|
Hi, I would like to use CLORB only with a local interface repository. I have created an ir.dump file with (download-ir) (save-ir) and then during application initialization I read the repository with (load-ir) However, the ir.dump file doesn't contain any definitions for exceptions in the IDL interfaces, so I still get calls to IR-LOOKUP-ID and thus to the external IR whenever an exception needs to be resolved. Is the problem in IR-ADD-ALL? -- Eric Marsden <URL:" rel="nofollow">http://www.laas.fr/~emarsden/> |