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
|
4
|
5
|
6
|
7
|
8
|
9
|
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
|
24
|
25
|
26
|
27
(1) |
28
|
29
|
30
|
|
31
|
|
|
|
|
|
|
|
From: Eric M. <ema...@la...> - 2002-03-27 15:12:25
|
Hi, I am trying to use CLORB to push untyped events of type struct to the EventService. I use code like the following, which results in a marshalling exception raised by the server. Any ideas whether marshalling of structs into anys works correctly? ,---- | (let ((event-channel (resolve "MyEventChannel"))) | (let ((in-adm (invoke event-channel "for_suppliers"))) | (let ((out (invoke in-adm "obtain_push_consumer")) | (data (CORBA:Any :any-typecode CORBA:tc_struct | :any-value (make-struct "IDL:Time/TimeVal:1.0" | :seconds 4 | :microseconds 2 | :counter 666)))) | (invoke out "connect_push_supplier" nil) | (invoke out "push" data) | (invoke out "disconnect_push_supplier"))))) `---- Thanks, -- Eric Marsden <URL:" rel="nofollow">http://www.laas.fr/~emarsden/> |