Search the web
Sign In
New User? Sign Up
quo-users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 31 of 35   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#31 From: R Shapiro <rshapiro@...>
Date: Sat Aug 3, 2002 7:19 pm
Subject: Re: [QUO] More than one instances of one contract-type?
rshapiro@...
Send Email Send Email
 
On Saturday, August 3, 2002, at 09:52  AM, Sven Harazim wrote:
> The creation of one delegate for each client-callback object works,
> but the instantiated Qoskets in the delegates use the same contract
> (every new created Qosket overides the old contract in the kernel with
> a new one). I need one contract for each delegate.

If you give the contracts unique names, everything should work as you
want it to.



> A further problem for me is the publicity of local SysConds in
> contracts. Is
> there another way to access to this SysConds in addition to probed
> SysConds?

It's possible if the syscond itself knows how to call out to some other
CORBA object in the outside world.  For instance it could pass itself as
an argument in a call on some CORBA object that lives in your qosket.
That would give you access to it from the qosket.

But if you just want access to it from the qosket, it makes more sense
to have the qosket create the syscond in the first place and to pass it
in to the Contract as an argument.



--
rshapiro@...

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#30 From: Sven Harazim <sven@...>
Date: Sat Aug 3, 2002 1:52 pm
Subject: Re: [QUO] More than one instances of one contract-type?
sven@...
Send Email Send Email
 
Hello Michael,

MA> cool.

;-)

MA> Yes, it should be possible to have multiple contract instances of the
MA> same contract type in the same kernel. Are you using the C++ or JAVA kernel?

I'm using the JAVA kernel.

Several clients can subscribe to informations with there own specific
updaterate (millisec). Now, the contract compare the expected
updaterate with the measured updaterate and the delegate adapt the
callback, if the are different.

The creation of one delegate for each client-callback object works,
but the instantiated Qoskets in the delegates use the same contract
(every new created Qosket overides the old contract in the kernel with
a new one). I need one contract for each delegate.

A further problem for me is the publicity of local SysConds in contracts. Is
there another way to access to this SysConds in addition to probed
SysConds?


the contract:

contract UpdaterateMonitorContract (
     syscond quo::ValueSC quo_sc::ValueSCImpl updateRate
     //created in the Qosket with one ID for every delegate ... ??
)
{
     syscond probe bqosket::UpdaterateQosket::UpdaterateProbe
timeDiff("QuotationTime");

   region Expected (true) { }

   region Unexpected ((long long)timeDiff  != (long long)updateRate) { }
};



Sven

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#29 From: Michael Atighetchi <matighet@...>
Date: Fri Aug 2, 2002 2:48 pm
Subject: Re: [QUO] More than one instances of one contract-type?
matighet@...
Send Email Send Email
 
Hi Sven,



On Thu, Aug 01, 2002 at 10:28:49AM +0200, Sven Harazim wrote:
> Hello,
>
> i have wrote a Qosket with a simple contract.
>
cool.

> In the Application, i need one delegate for each client callback object.
> And each delegate should use it's own contract of this contract-type.
> That means, i need more than one contract instances of this contract-type in
> one QuO-kernel.
>
> Is that possible?
Yes, it should be possible to have multiple contract instances of the
same contract type in the same kernel. Are you using the C++ or JAVA kernel?

Also: Having one delegate per callback object seems odd. Can
you write a little bit about what QuO does in your application ?

Michael



--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#28 From: Sven Harazim <sven@...>
Date: Fri Aug 2, 2002 2:44 pm
Subject: (No subject)
sven@...
Send Email Send Email
 
who quo-users

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#27 From: "Sven Harazim" <sven@...>
Date: Thu Aug 1, 2002 8:28 am
Subject: [QUO] More than one instances of one contract-type?
sven@...
Send Email Send Email
 
Hello,

i have wrote a Qosket with a simple contract.

In the Application, i need one delegate for each client callback object.
And each delegate should use it's own contract of this contract-type.
That means, i need more than one contract instances of this contract-type in
one QuO-kernel.

Is that possible?

Best Regards,
Sven Harazim

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#26 From: Michael Atighetchi <matighet@...>
Date: Fri Apr 5, 2002 9:24 pm
Subject: QuO 3.0.10 released
matighet@...
Send Email Send Email
 
QuO 3.0.10 got released today.

You can download it at
http://qualityobjects.org/release/3.0.10/

Some of the changes / new features include:
-------------------------------------------
quoCore:
  * Made memory allocation policy flexible for C++ Kernel contract
    evaluation. With the use of ACE_Allocator objects, it is now possible
    to minimize the number of dynmamic memory allocations during contract
    evaluation (this is believed to cause memory fragmentation problems
    on VXworks).

  * Extended support for building quogen and the C++ Kernel under NT:
    It is now possible to build both release and debug versions.

  * various changes to move up C++ support to TAO version 5.2

  * New example $QUO_ROOT/examples/brokered_imgsvc, which is a model
    application containing a display client, a slide server, and a broker
    that connects the previous two together.

  * Expanded the bette example to use a webcam as picture source.
    Also added a new qosket $QUO_ROOT/qosket/img_resize to do dynamic
    image resizing.

quoAQuA:
  * First release of quo-enabled AQuA (quoAQuA). Now works with version
    ITUA-AQuA 4.0.6 and jacorb 1.4.

quoUAV:
  * updates shown at the PI meeting April 2002.


quoDoc:
  * moved to new webpage
  * added section about quoAQuA



Known issues:
-------------
quoOODTE:
  * the cpp part of the test is not compiling. [ccjones, April 4 2002]

quoCore:
  * examples/brokered_imgsvc
    The webcam support has only been partially tested.

quoRsvporb:
  * examples/bette_rsvp is out of date. It compiles but does NOT run.


Michael

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#25 From: "Ezgi Bilir" <insankaynaklari@...>
Date: Mon Jan 3, 2000 10:01 am
Subject: Sendemi...???
insankaynaklari@...
Send Email Send Email
 
girl_front_01.jpg (26593 bytes)
Yalnızlıktan sıkıldınız mı?

Hepimiz zaman zaman bir dosta, bir sevgiliye ya da bir dert ortağına ihtiyaç duymuşuzdur değil mi ? Peki ya o dostun sizlere bir click ötede olduğunu söylersem ne dersiniz? Şimdi sizlere bahsedeceğim sitede, yüzbinlerce erkek ve kız derdinizi paylaşmak için hazır bekliyor. Bu siteye üye olursanız yalnızlığınıza bir son verecek belki de yeni bir sevgili bulacaksınız.

Sitenin yaklaşık 50.000 Türk üyesi bulunuyor ve herbiri Türkiye'nin değişik yerlerinden erkek ya da bayanlar.....

Bu site ücretsiz olarak faaliyet gösteriyor yani ne kredi kartı ne de önemli bilgiler vermeniz gerekir. Yalnızca kendinizi tanıtıp, ömür boyu sürecek dostluklar kuracaksınız.

Siteye üye olmak hakkında ayrıntılı bilgi için sitelerimiz :

SİTELERİMİZ : Biri çalışmassa diğerini deneyebilirsiniz.

SİTE 1
SİTE 2
SİTE 3
SİTE 4
SİTE 5
SİTE 6
-- [To unsubscribe to this list send an email to "majdart@..." with the following text in the BODY of the message "unsubscribe quo-users"]

#24 From: "kriss rolo" <krissrolo@...>
Date: Thu Jan 24, 2002 4:27 pm
Subject: SOME ITEMS THAT YOU MAY BE INTERESTED IN OR BE ABLE TO ADVISE ME ON
krissrolo@...
Send Email Send Email
 
These are the items that iam interested in selling..
Could you help me with some details on the goods, history, origin etc.
are these worth anything and if so who would i contact with regards to
selling them? and the best way to sell them ie auction etc

APOLOGISE IF YOU HAVE ALREADY RECEIVED THIS E-MAIL

JPEGS ARE AVAILABLE AT YOUR REQUEST

MANY THANX

kriss rolo
tel:
0044 182760393 office (uk)
0044 1216864211 home (uk)
0044 7814294018 mobile (uk)

return e-mail address krissrolo@...

UK ONLY VEHICLE REGISTRATION NUMBER N64 CON
NINTENDO 64 CONSOLE

item 1


hand carved round table with metal chain link in the middle





item 2

magnum laurent perrier vintage 1988 champagne





item 3

miniture football on stand from euro96 signed by pele and bobby charlton



item 4
is a bit more interesting. its a protana minifon attache, as u will see
ive enclosed notes from a web site regarding this and you will see back in
the 50's it cost $340.00 so i could imagine this to be worth a bit. it
also has an original tape inside i do not know what is on this tape, but
judging by who made it and the cost of the machine, the tape could have
some important information on it. heres the note.....



The Minifon, developed in the early 1950s by Monske GMBH of Hanover(or by
Protona GMBH- I'm not certain), was an ultra-miniaturized, battery
operated magnetic recording device. It could not (initially at least)
record the full range of sounds and was thus limited to voice recording,
but it did offer easy portability in a very small package. The idea of
offering a pocket dictating machine was novel, since dictation had
previously been done in the office. However, it was thought that people
like salesmen could take the machine "on the road" with them. Once on the
market, the Minifon's promoters discovered that many people took advantage
of the recorder's small size to make secret recordings to be used as
evidence, as in court.<BR>
<BR>
The "legitimate" use of the Minifon, as a dictating machine, was somewhat
problematical. Recordings made on regular dictating equipment were usually
letters, and thus were normally sent almost immediately to a typist. The
Minifon offered no obvious advantages over standard dictation equipment
for office use, but its developers hoped to cultivate new uses for
dictation equipment, such as stock taking in warehouses, or the use of the
machine as a substitute for note-taking by reporters, insurance adjusters,
salesmen, and others.

In its original form, the Minifon was a wire recorder, using a type of
wire medium developed by the Armour Research Foundation of Chicago and
employed in many similar devices since the late 1940s. The machine at its
introduction in 1952 had a recording time of one hour, which was
remarkably long, and weighed only about 3 pounds at a time when a typical
office dictating machine weighed upwards of 10 pounds. It accomplished
this small size and light weight in part through the use of miniature
tubes and clever mechanical design. The basic machine cost $289.50-- a
price that sounds high today but was very much in line with competing
office dictating machines.

The parent company attempted to set up distribution, sales and service
networks in the United States. It established a business office called the
Minifon Export Corp in New York, and an existing company, Harvey Radio in
New York City became the main distributor. Although smaller tape recorders
appeared at about the same time, the main competition in the voice
recording field was from an American company, Mohawk, which made a small,
battery-operated cartridge tape recorder called the Migetape. Both
products sold less than 10,000 units per year in the U.S.<BR>

After a few years, the Minifon was modified to use transistors and
magnetic tape, further lowering its weight and cost. By 1962 the basic
machine weighed in at only 1.5 pounds. Competition by this time had helped
bring the cost down to $249.50.

The Minifon after about 1962 was distributed by the international
conglomerate ITT through its subsidiary in the U.S., Federal Electric
Corp. A little later, distribution was taken over by the ITT Distributor
Products Division in Lodi, New Jersey. (I don't know whether these were
the same company with different names)

By the time ITT became associated with this product, it had taken on the
name of Minifon "Attache," and a new line of models and options appeared.
These included a hi-fi model, the 978H, which sold for $330.50.Usinga
two-track, 1/4 inch tape cartridge operating at 1 7/8 inches per second,
the machine claimed a frequency response of up to 12,000 Hz, plus or minus
3db.
The coming of magnetic tape did not completely displace wire. The Model
240 series of recorders introduced in the early 1960s were probably the
last wire recorders in regular production. The 240L, at a price of $269.50
used a special long-playing wire cartridge that held 4 hours of wire.
Otherwise it looked like both the tape model and the 240S, which used a
2-hour wire cartridge and sold for $249.50.

Another innovation was the introduction of more conventional recorders.
After years of offering only "half" of a complete dictation system,
Minifon finally developed a restyled, non-portable "office" machine,
mainly for use by a transcriber, with pedal controls.

By the mid-1960s, Minifon was trying to market its machines as
multi-purpose devices suitable for nearly any recording need. In addition
to the hi-fi and long-playing machines, the company offered an astounding
variety of optional equipment such as foot controls, microphones, external
amplifiers and loudspeakers, headsets, external power supplies, telephone
recording attachments, conference recording adapters. One of the most
interesting options were the miniature microphones intended to allow users
to make "spy" recordings. In addition to a small tie-clip microphone, the
Minifon could be equipped with a microphone disguised as a wrist- watch.

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#23 From: "Rana Gocer" <yourname@...>
Date: Wed Dec 29, 1999 12:20 am
Subject: slm
yourname@...
Send Email Send Email
 
CDLER NORMAL FIYAT = 8.000.000 - 10.000.000 TL
  BIZDE = 3.000.000 - 4.000.000 TL
  Adrese teslim , toplu alislarda indirim.

############################################################
BU MESAJ BIR SPAM DEGILDIR    BU MESAJ BIR DEFALIGINA GONDERILMISTIR  #
############################################################

http://alisverissehri.kolayweb.com
http://alisverissehri.kolayweb.com
http://alisverissehri.kolayweb.com

Degerli ziyaretcimiz,

Asagidaki avantajlardan yararlanmak istiyorsaniz lutfen sitemizi en kisa zamanda
tekrar
ziyaret ediniz.

1. Bes (5) Oyun  alana   1 Adet Fifa 2002 Hediye!
2. On (10) Oyun alana    1 Adet Melekler Şehri 1 Adet Dikey Limit Hediye!
3. Bes (5) Mp3 alana     1 Adet Pop şarkıları Mp3 Hediye!
4. On (10) Mp3 alana     1 Adet Fifa 2002 Hediye!
5. Bes (5) Film Alana bir adet yuzuklerin efendisi filmi hediye!
6. CD-Rw     110 $     =     özel siparis  = 40x okuma 30 x yazma  10x tekrar
yazma ..

  CDLER NORMAL FIYAT = 10.000.000 TL
  BIZDE 3.000.000 - 4.000.000 TL
  Adrese teslim , toplu alislarda indirim.

Not:Daha fazla avantajlar sitemizde mevcuttur.Avantajlar 1 ay icin gecerlidir.
Yeni avantajlari gormek icin sitemizi sık sık ziyaret ediniz.


Saygilar,
Serdar Kahya
UYARI: BU BIR SPAM DEGILDIR. Email adresiniz uye oldugunuz sirket tarafindan
ucret karsiligi bir defaya mahsus kullanmak uzere alinmistir.
http://alisverissehri.kolayweb.com

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#22 From: Yamuna Krishnamurthy <yamuna@...>
Date: Fri Dec 14, 2001 9:05 pm
Subject: Re: New distribution
yamuna@...
Send Email Send Email
 
Hi:

I downloaded the new distribution. I was able to compile the quo Core. I
was also able to compile and run the bett-rmi example. I am however
having problems compiling the beet example. I have attached the log
files with the error. I recompiled rss, intrumentation and count
qoskets. I even recompiled quogen. But I still get the errors. Any help
would be appreciated.

Thanks
Yamuna

>I have uploaded a new quoCore.src.tgz distribution file.
>You can get it via anonymous ftp.
>
>Go to:
>
>ftp://openmap.bbn.com/pub/QuO-limited/oomworks/
>
>You will find it there.
>
>The RSS has been updated, and there is a new rss.idl file in that package.
>
>Let me know if you have any problems with this stuff ASAP, since
>I'm soon on holiday.
>
cd idl; make
make[1]: Entering directory `/home/yamuna/New_Quo/quo/examples/bette/idl'
/home/yamuna/JacORB1_3_30/bin/idl -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
SlideShow-common.idl
/home/yamuna/JacORB1_3_30/bin/idl -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
SlideShow.idl
/home/yamuna/JacORB1_3_30/bin/idl -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
SlideShowInstrumented.idl
install -d /home/yamuna/New_Quo/quo/examples/bette/.classes
/home/yamuna/New_Quo/quo/bin/jacoc -d
/home/yamuna/New_Quo/quo/examples/bette/.classes
com/bbn/quo/examples/bette/*.java
com/bbn/quo/examples/bette/SlideShowInstrumentedOperations.java:10: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	 int getNumberOfGifs(com.bbn.quo.instr.corba.Trace_recHolder record);
                                                    ^
com/bbn/quo/examples/bette/SlideShowInstrumentedOperations.java:11: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	 void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record);
                                                                                                                                          
^
com/bbn/quo/examples/bette/SlideShowInstrumentedOperations.java:12: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	 void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record);
                                                                                                                                             
^
com/bbn/quo/examples/bette/SlideShowInstrumentedOperations.java:13: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	 void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record);
                                                                                                                                                      
^
com/bbn/quo/examples/bette/SlideShowInstrumentedOperations.java:14: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	 void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record);
                                                                                                                                               
^
com/bbn/quo/examples/bette/SlideShowInstrumentedOperations.java:15: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	 void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record);
                                                                                                                                                        
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOATie.java:40: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                 
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOATie.java:45: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                      
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOATie.java:50: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                               
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOATie.java:55: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                    
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOATie.java:60: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public int getNumberOfGifs(com.bbn.quo.instr.corba.Trace_recHolder record)
                                                           ^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOATie.java:65: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                             
^
com/bbn/quo/examples/bette/_SlideShowInstrumentedStub.java:19: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                 
^
com/bbn/quo/examples/bette/_SlideShowInstrumentedStub.java:69: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                      
^
com/bbn/quo/examples/bette/_SlideShowInstrumentedStub.java:119: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                               
^
com/bbn/quo/examples/bette/_SlideShowInstrumentedStub.java:169: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                    
^
com/bbn/quo/examples/bette/_SlideShowInstrumentedStub.java:219: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public int getNumberOfGifs(com.bbn.quo.instr.corba.Trace_recHolder record)
                                                           ^
com/bbn/quo/examples/bette/_SlideShowInstrumentedStub.java:267: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
	 public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record)
                                                                                                                                                             
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:47: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                        ^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:47: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                                                                          
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:61: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                        ^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:61: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                                                                          
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:75: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                        ^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:75: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                                                                          
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:89: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                        ^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:89: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                                                                          
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:100: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg0= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                        ^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:100: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg0= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                                                                          
^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:112: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                        ^
com/bbn/quo/examples/bette/SlideShowInstrumentedPOA.java:112: cannot resolve
symbol
symbol  : class Trace_recHolder
location: package corba
				 com.bbn.quo.instr.corba.Trace_recHolder _arg3= new
com.bbn.quo.instr.corba.Trace_recHolder();
                                                                                                          
^
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.
30 errors
touch .tag
cd ../qdl; make clean
make[2]: Entering directory `/home/yamuna/New_Quo/quo/examples/bette/qdl'
rm -rf com .tag
make[2]: Leaving directory `/home/yamuna/New_Quo/quo/examples/bette/qdl'
cd ..; make clean
make[2]: Entering directory `/home/yamuna/New_Quo/quo/examples/bette'
rm -f bette.jar
make[2]: Leaving directory `/home/yamuna/New_Quo/quo/examples/bette'
make[1]: Leaving directory `/home/yamuna/New_Quo/quo/examples/bette/idl'
cd qdl; make
make[1]: Entering directory `/home/yamuna/New_Quo/quo/examples/bette/qdl'
/home/yamuna/New_Quo/quo/bin/quogen \
--generate=both \
--target=client \
--cdl=Diagnose.cdl \
--idl=SlideQoskets.idl \
--idl=idl/SlideShowInstrumented.idl \
--idl=idl/SlideShow.idl \
--idl=quo_corba.idl \
--business=slide::SlideShow \
--adapter=SlideShowDiagnoseAdapter \
--qosketimpl=com.bbn.quo.examples.bette.DiagnoseQosketImpl \
--adapterqosket=slide::DiagnoseQosket \
--delegateqosket=slide::DiagnoseDelegateQosket \
--asl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/InstrumentationTemplat\
e.asl \
--asl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/CorbaInstrumentationTe\
mplate.asl \
--asl=SlideShowInstrumentation.asl \
--asl=SlideShow.asl \
--asl=Diagnose.asl \
--properties=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/Instrumentation\
DerivedCorba.prop \
--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
/home/yamuna/New_Quo/quo/bin/quogen \
--generate=both \
--target=client \
--cdl=UserAdapt.cdl \
--idl=SlideQoskets.idl \
--idl=idl/SlideShowInstrumented.idl \
--idl=idl/SlideShow.idl \
--idl=quo_corba.idl \
--business=slide::SlideShow \
--adapter=SlideShowUserAdaptAdapter \
--qosketimpl=com.bbn.quo.examples.bette.UserAdaptQosketImpl \
--adapterqosket=slide::UserAdaptQosket \
--delegateqosket=slide::UserAdaptDelegateQosket \
--asl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/InstrumentationTemplat\
e.asl \
--asl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/CorbaInstrumentationTe\
mplate.asl \
--asl=SlideShowInstrumentation.asl \
--asl=SlideShow.asl \
--asl=UserAdapt.asl \
--properties=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/Instrumentation\
DerivedCorba.prop \
--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
/home/yamuna/New_Quo/quo/bin/quogen \
--generate=both \
--target=client \
--cdl=State.cdl \
--idl=SlideQoskets.idl \
--idl=idl/SlideShow.idl \
--qosket=slide::StateQosket \
--business=slide::SlideShow \
--adapter=SlideShowStateAdapter \
--qosketimpl=com.bbn.quo.examples.bette.StateQosketImpl \
--asl=State.asl \
--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
/home/yamuna/New_Quo/quo/bin/quogen \
--target=client \
--cdl=/home/yamuna/New_Quo/quo/qosket/count/qdl/Count.cdl \
--idl=idl/SlideShow.idl \
--idl=/home/yamuna/New_Quo/quo/qosket/count/qdl/Count.idl \
--qosket=qosket::count::CountQosket \
--properties=/home/yamuna/New_Quo/quo/qosket/count/qdl/CountCorba.prop \
--business=slide::SlideShow \
--adapter=SlideShowCountAdapter \
--asl=/home/yamuna/New_Quo/quo/qosket/count/qdl/CountTemplate.asl \
--asl=Count.asl \
--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
/home/yamuna/New_Quo/quo/bin/quogen \
--target=client \
--cdl=/home/yamuna/New_Quo/quo/qosket/rss/qdl/RSS.cdl \
--idl=/home/yamuna/New_Quo/quo/qosket/rss/qdl/RSS.idl \
--idl=idl/SlideShowInstrumented.idl \
--idl=idl/SlideShow.idl \
--idl=quo_corba.idl \
--adapterqosket=qosket::rss::RSSQosket \
--delegateqosket=qosket::rss::RSSDelegateQosket \
--properties=/home/yamuna/New_Quo/quo/qosket/rss/qdl/RSSCorba.prop \
--business=slide::SlideShow \
--adapter=SlideShowRSSAdapter \
--asl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/InstrumentationTemplat\
e.asl \
--asl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/CorbaInstrumentationTe\
mplate.asl \
--asl=SlideShowInstrumentation.asl \
--asl=SlideShow.asl \
--asl=RSS.asl \
--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
/home/yamuna/New_Quo/quo/bin/quogen  \
--target=server \
--cdl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/SimpleInstrumentedServ\
er.cdl \
--idl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/Instrumentation.idl \
--idl=idl/SlideShowInstrumented.idl \
--idl=quo_corba.idl \
--adapterqosket=qosket::instrumentation::ServerInstrumentationQosket \
--delegateqosket=qosket::instrumentation::ServerInstrumentationDelegateQosket \
--properties=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/ServerInstrumen\
tationCorba.prop \
--business=slide::SlideShowInstrumented \
--adapter=SlideShowInstrumentedServerAdapter \
--asl=/home/yamuna/New_Quo/quo/qosket/instrumentation/qdl/SimpleInstrumentedServ\
erTemplate.asl \
--asl=SlideShowInstrumentedServer.asl \
--asl=SlideShowServer.asl \
--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
/home/yamuna/New_Quo/quo/bin/quogen  \
--generate=both \
--target=server \
--cdl=State.cdl \
--idl=idl/SlideShow.idl \
--idl=SlideQoskets.idl \
--adapterqosket=slide::SerializingQosket \
--delegateqosket=slide::SerializingDelegateQosket \
--business=slide::SlideShow \
--adapter=SlideShowSerializeAdapter \
--asl=Serialize.asl \
--qosketimpl=com.bbn.quo.examples.bette.SerializingQosketImpl \
--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/New_Quo/quo/idl
-I/home/yamuna/New_Quo/quo/examples/bette -I/home/yamuna/New_Quo/quo/qosket
-i2jpackage quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
-i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data -i2jpackage
instr:com.bbn.quo.instr.corba -i2jpackage instr_sc:com.bbn.quo.instr -i2jpackage
slide:com.bbn.quo.examples.bette -i2jpackage qosket:com.bbn.quo.qosket
/home/yamuna/New_Quo/quo/bin/jacoc -d
/home/yamuna/New_Quo/quo/examples/bette/.classes
com/bbn/quo/examples/bette/*.java
com/bbn/quo/examples/bette/DiagnoseQosket.java:18: cannot resolve symbol
symbol  : class SlideShow
location: package bette
   public void setServer(java.lang.String implementation,
com.bbn.quo.examples.bette.SlideShow server);
                                                                                   
^
com/bbn/quo/examples/bette/SerializingDelegateQosket.java:16: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   public com.bbn.quo.examples.bette.SlideShow
reserialize(com.bbn.quo.examples.bette.SlideShow server);
                                                                                    
^
com/bbn/quo/examples/bette/SerializingDelegateQosket.java:16: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   public com.bbn.quo.examples.bette.SlideShow
reserialize(com.bbn.quo.examples.bette.SlideShow server);
                                    ^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:17: cannot resolve
symbol
symbol  : class _SlideShowStub
location: package bette
public class SlideShowCountDelegate_client extends
com.bbn.quo.examples.bette._SlideShowStub {
                                                                              ^
com/bbn/quo/examples/bette/SlideShowCountAdapter.java:49: cannot resolve symbol
symbol  : class SlideShow
location: package bette
   public void linkRemoteObject( com.bbn.quo.examples.bette.SlideShow remote_obj)
                                                           ^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:21: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   protected com.bbn.quo.examples.bette.SlideShow quo_remoteObj;
                                       ^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:22: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   void set_remoteObj(com.bbn.quo.examples.bette.SlideShow arg1){
                                                ^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:25: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   com.bbn.quo.examples.bette.SlideShow  get_remoteObj(){
                             ^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:41: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                             
^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:55: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                
^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:58: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:61: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                  
^
com/bbn/quo/examples/bette/SlideShowCountDelegate_client.java:64: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                           
^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:17: cannot
resolve symbol
symbol  : class _SlideShowStub
location: package bette
public class SlideShowDiagnoseDelegate_client extends
com.bbn.quo.examples.bette._SlideShowStub {
                                                                                
^
com/bbn/quo/examples/bette/SlideShowDiagnoseAdapter.java:50: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   public void linkRemoteObject( com.bbn.quo.examples.bette.SlideShow remote_obj)
                                                           ^
com/bbn/quo/examples/bette/SlideShowDiagnoseAdapter.java:69: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   public void setServer(java.lang.String implementation,
com.bbn.quo.examples.bette.SlideShow server)
                                                                                   
^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:20: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   protected com.bbn.quo.examples.bette.SlideShow remote;
                                       ^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:23: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   void set_remote(com.bbn.quo.examples.bette.SlideShow arg1){
                                             ^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:29: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   void set_remoteObj(com.bbn.quo.examples.bette.SlideShow arg1){
                                                ^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:32: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   com.bbn.quo.examples.bette.SlideShow  get_remoteObj(){
                             ^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:67: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                             
^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:143: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                
^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:146: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:149: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                  
^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:152: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                           
^
/home/yamuna/New_Quo/quo/examples/bette/com/bbn/quo/examples/bette/DiagnoseQoske\
tImpl.java:33: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
     private SlideShow reference;
             ^
/home/yamuna/New_Quo/quo/examples/bette/com/bbn/quo/examples/bette/DiagnoseQoske\
tImpl.java:139: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
     public void setServer(String implementation, SlideShow server) {
                                                  ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:17: cannot resolve symbol
symbol  : class SlideShowInstrumentedPOA
location: package bette
class SlideShowInstrumentedInstrumentedServerDelegate_object extends
com.bbn.quo.examples.bette.SlideShowInstrumentedPOA {
                                                                                               
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:25: cannot resolve symbol
symbol  : class SlideShowInstrumented
location: package bette
   protected com.bbn.quo.examples.bette.SlideShowInstrumented quo_remoteObj;
                                       ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:26: cannot resolve symbol
symbol  : class SlideShowInstrumented
location: package bette
   void set_remoteObj(com.bbn.quo.examples.bette.SlideShowInstrumented arg1){
                                                ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:29: cannot resolve symbol
symbol  : class SlideShowInstrumented
location: package bette
   com.bbn.quo.examples.bette.SlideShowInstrumented get_remoteObj(){
                             ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:46: cannot resolve symbol
symbol  : class Trace_recHolder
location: package corba
   public int getNumberOfGifs(com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                     ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:63: cannot resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                             
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:63: cannot resolve symbol
symbol  : class Trace_recHolder
location: package corba
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                                                           
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:100: cannot resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:100: cannot resolve symbol
symbol  : class Trace_recHolder
location: package corba
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                                                              
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:137: cannot resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:137: cannot resolve symbol
symbol  : class Trace_recHolder
location: package corba
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                                                                       
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:174: cannot resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                  
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:174: cannot resolve symbol
symbol  : class Trace_recHolder
location: package corba
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                                                                
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:211: cannot resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                           
^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:211: cannot resolve symbol
symbol  : class Trace_recHolder
location: package corba
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf,
com.bbn.quo.instr.corba.Trace_recHolder record) {
                                                                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowInstrumentedServerAdapter.java:50: cannot
resolve symbol
symbol  : class SlideShowInstrumented
location: package bette
   public void linkRemoteObject( com.bbn.quo.examples.bette.SlideShowInstrumented
remote_obj)
                                                           ^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:17: cannot resolve
symbol
symbol  : class _SlideShowStub
location: package bette
public class SlideShowRSSDelegate_client extends
com.bbn.quo.examples.bette._SlideShowStub {
                                                                            ^
com/bbn/quo/examples/bette/SlideShowRSSAdapter.java:50: cannot resolve symbol
symbol  : class SlideShow
location: package bette
   public void linkRemoteObject( com.bbn.quo.examples.bette.SlideShow remote_obj)
                                                           ^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:20: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   protected com.bbn.quo.examples.bette.SlideShow remote;
                                       ^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:23: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   void set_remote(com.bbn.quo.examples.bette.SlideShow arg1){
                                             ^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:29: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   void set_remoteObj(com.bbn.quo.examples.bette.SlideShow arg1){
                                                ^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:32: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   com.bbn.quo.examples.bette.SlideShow  get_remoteObj(){
                             ^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:62: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                             
^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:112: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                
^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:115: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:118: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                  
^
com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:121: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                           
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:17: cannot resolve
symbol
symbol  : class SlideShowPOA
location: package bette
class SlideShowStateDelegate_object extends
com.bbn.quo.examples.bette.SlideShowPOA {
                                                                       ^
com/bbn/quo/examples/bette/SlideShowSerializeAdapter.java:50: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   public void linkRemoteObject( com.bbn.quo.examples.bette.SlideShow remote_obj)
                                                           ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:20: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   protected com.bbn.quo.examples.bette.SlideShow server;
                                       ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:23: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   void set_server(com.bbn.quo.examples.bette.SlideShow arg1){
                                             ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:29: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   void set_remoteObj(com.bbn.quo.examples.bette.SlideShow arg1){
                                                ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:32: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   com.bbn.quo.examples.bette.SlideShow get_remoteObj(){
                             ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:62: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                             
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:90: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:93: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:96: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                  
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_object.java:99: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                           
^
/home/yamuna/New_Quo/quo/examples/bette/com/bbn/quo/examples/bette/SerializingQo\
sketImpl.java:74: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.SerializingQosketImpl
     public SlideShow reserialize(SlideShow server) {
                                  ^
/home/yamuna/New_Quo/quo/examples/bette/com/bbn/quo/examples/bette/SerializingQo\
sketImpl.java:74: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.SerializingQosketImpl
     public SlideShow reserialize(SlideShow server) {
            ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:17: cannot resolve
symbol
symbol  : class _SlideShowStub
location: package bette
public class SlideShowStateDelegate_client extends
com.bbn.quo.examples.bette._SlideShowStub {
                                                                              ^
com/bbn/quo/examples/bette/SlideShowStateAdapter.java:49: cannot resolve symbol
symbol  : class SlideShow
location: package bette
   public void linkRemoteObject( com.bbn.quo.examples.bette.SlideShow remote_obj)
                                                           ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:20: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   protected com.bbn.quo.examples.bette.SlideShow server;
                                       ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:22: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   void set_server(com.bbn.quo.examples.bette.SlideShow arg1){
                                             ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:25: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   void set_remoteObj(com.bbn.quo.examples.bette.SlideShow arg1){
                                                ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:28: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   com.bbn.quo.examples.bette.SlideShow  get_remoteObj(){
                             ^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:54: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                             
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:78: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:81: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:84: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                  
^
com/bbn/quo/examples/bette/SlideShowStateDelegate_client.java:87: cannot resolve
symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                           
^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:17: cannot
resolve symbol
symbol  : class _SlideShowStub
location: package bette
public class SlideShowUserAdaptDelegate_client extends
com.bbn.quo.examples.bette._SlideShowStub {
                                                                                 
^
com/bbn/quo/examples/bette/SlideShowUserAdaptAdapter.java:50: cannot resolve
symbol
symbol  : class SlideShow
location: package bette
   public void linkRemoteObject( com.bbn.quo.examples.bette.SlideShow remote_obj)
                                                           ^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:20: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   protected com.bbn.quo.examples.bette.SlideShow remote;
                                       ^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:23: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   void set_remote(com.bbn.quo.examples.bette.SlideShow arg1){
                                             ^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:29: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   void set_remoteObj(com.bbn.quo.examples.bette.SlideShow arg1){
                                                ^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:32: cannot
resolve symbol
symbol  : class SlideShow
location: package bette
   com.bbn.quo.examples.bette.SlideShow  get_remoteObj(){
                             ^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:65: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void read(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                             
^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:145: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBig(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                
^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:148: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readBigProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                         
^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:151: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmall(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                  
^
com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:154: cannot
resolve symbol
symbol  : class octetArrayHolder
location: package bette
   public void readSmallProcessed(int gifNumber, org.omg.CORBA.StringHolder size,
com.bbn.quo.examples.bette.octetArrayHolder buf) {
                                                                                                           
^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:74: cannot
resolve symbol
symbol  : class SlideShowInstrumented
location: package bette
     com.bbn.quo.examples.bette.SlideShowInstrumented iServer;
                               ^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:85: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	 com.bbn.quo.instr.corba.Trace_recHolder holder
                                ^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:86: cannot
resolve symbol
symbol  : class Trace_recHolder
location: package corba
	   = new com.bbn.quo.instr.corba.Trace_recHolder(rec);
                                        ^
com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:97: cannot
resolve symbol
symbol  : class SlideShowInstrumented
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseDelegate_client
	   iServer = ((SlideShowInstrumented) qk.getInstrumentedServer());
                       ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:58: cannot resolve symbol
symbol  : class SlideShowOperations
location: class
com.bbn.quo.examples.bette.SlideShowInstrumentedInstrumentedServerDelegate_objec\
t
	   retval = ((SlideShowOperations) qk.getServer()).getNumberOfGifs();
                      ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:83: cannot resolve symbol
symbol  : class SlideShowOperations
location: class
com.bbn.quo.examples.bette.SlideShowInstrumentedInstrumentedServerDelegate_objec\
t
	   SlideShowOperations server = ((SlideShowOperations) qk.getServer());
           ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:83: cannot resolve symbol
symbol  : class SlideShowOperations
location: class
com.bbn.quo.examples.bette.SlideShowInstrumentedInstrumentedServerDelegate_objec\
t
	   SlideShowOperations server = ((SlideShowOperations) qk.getServer());
                                          ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:120: cannot resolve symbol
symbol  : class SlideShowOperations
location: class
com.bbn.quo.examples.bette.SlideShowInstrumentedInstrumentedServerDelegate_objec\
t
	   SlideShowOperations server = ((SlideShowOperations) qk.getServer());
           ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:120: cannot resolve symbol
symbol  : class SlideShowOperations
location: class
com.bbn.quo.examples.bette.SlideShowInstrumentedInstrumentedServerDelegate_objec\
t
	   SlideShowOperations server = ((SlideShowOperations) qk.getServer());
                                          ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:157: cannot resolve symbol
symbol  : class SlideShowOperations
location: class
com.bbn.quo.examples.bette.SlideShowInstrumentedInstrumentedServerDelegate_objec\
t
	   SlideShowOperations server = ((SlideShowOperations) qk.getServer());
           ^
com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_objec\
t.java:157: cannot resolve symbol
symbol  : class SlideShowOperations
location: class
com.bbn.quo.examples.bette.SlideShowInstrumentedInstrumentedServerDelegate_objec\
t
	   SlideShowOperations server = ((SlideShowOperations) qk.getServer());
                                          ^
100 errors
touch .tag
cd ..; make clean
make[2]: Entering directory `/home/yamuna/New_Quo/quo/examples/bette'
rm -f bette.jar
make[2]: Leaving directory `/home/yamuna/New_Quo/quo/examples/bette'
make[1]: Leaving directory `/home/yamuna/New_Quo/quo/examples/bette/qdl'
/home/yamuna/New_Quo/quo/bin/jacoc -d
/home/yamuna/New_Quo/quo/examples/bette/.classes
com/bbn/quo/examples/bette/*.java
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:27: cannot resolve symbol
symbol  : class DiagnoseQosketSkel
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
     extends DiagnoseQosketSkel
             ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:28: cannot resolve symbol
symbol  : class DiagnoseDelegateQosket
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
     implements DiagnoseDelegateQosket
                ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:33: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
     private SlideShow reference;
             ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:139: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
     public void setServer(String implementation, SlideShow server) {
                                                  ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:18: cannot resolve symbol
symbol  : class SerializingQosketSkel
location: class com.bbn.quo.examples.bette.SerializingQosketImpl
     extends SerializingQosketSkel
             ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:19: cannot resolve symbol
symbol  : class SerializingDelegateQosket
location: class com.bbn.quo.examples.bette.SerializingQosketImpl
     implements SerializingDelegateQosket
                ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:74: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.SerializingQosketImpl
     public SlideShow reserialize(SlideShow server) {
                                  ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:74: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.SerializingQosketImpl
     public SlideShow reserialize(SlideShow server) {
            ^
com/bbn/quo/examples/bette/SlideClient.java:36: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.SlideClient
     protected SlideShow slideShow;
               ^
com/bbn/quo/examples/bette/SlideService.java:31: cannot resolve symbol
symbol  : class SlideShowPOA
location: class com.bbn.quo.examples.bette.SlideService
     extends SlideShowPOA
             ^
com/bbn/quo/examples/bette/SlideService.java:32: cannot resolve symbol
symbol  : class SlideShowOperations
location: class com.bbn.quo.examples.bette.SlideService
     implements Serializable, SlideShowOperations
                              ^
com/bbn/quo/examples/bette/SlideService.java:80: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideService
			 octetArrayHolder pixelsHolder)
                         ^
com/bbn/quo/examples/bette/SlideService.java:88: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideService
			   octetArrayHolder pixelsHolder)
                           ^
com/bbn/quo/examples/bette/SlideService.java:96: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideService
				  octetArrayHolder pixelsHolder)
                                  ^
com/bbn/quo/examples/bette/SlideService.java:104: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideService
				     octetArrayHolder pixelsHolder)
                                     ^
com/bbn/quo/examples/bette/SlideService.java:113: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideService
		      octetArrayHolder pixelsHolder)
                      ^
com/bbn/quo/examples/bette/SlideService.java:134: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideService
			  octetArrayHolder pixelsHolder,
                          ^
com/bbn/quo/examples/bette/SlideShowAbstractWrapper.java:10: cannot resolve
symbol
symbol  : class SlideShow
location: interface com.bbn.quo.examples.bette.SlideShowAbstractWrapper
   extends SlideShow
           ^
com/bbn/quo/examples/bette/SlideShowCountWrapper.java:10: cannot resolve symbol
symbol  : class SlideShowCountAdapter
location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
   extends SlideShowCountAdapter
           ^
com/bbn/quo/examples/bette/WrapperHelper.java:18: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.WrapperHelper
     public SlideShow server;
            ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:12: cannot resolve
symbol
symbol  : class SlideShowDiagnoseAdapter
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
   extends SlideShowDiagnoseAdapter
           ^
com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:18: cannot
resolve symbol
symbol  : class SlideShowInstrumentedServerAdapter
location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
   extends SlideShowInstrumentedServerAdapter
           ^
com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:10: cannot resolve symbol
symbol  : class SlideShowRSSAdapter
location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
   extends SlideShowRSSAdapter
           ^
com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:18: cannot
resolve symbol
symbol  : class SlideShowSerializeAdapter
location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
   extends SlideShowSerializeAdapter
           ^
com/bbn/quo/examples/bette/SlideShowState.java:10: cannot resolve symbol
symbol  : class SlideShow
location: interface com.bbn.quo.examples.bette.SlideShowState
public interface SlideShowState extends SlideShow, StateQosket
                                         ^
com/bbn/quo/examples/bette/SlideShowState.java:10: cannot resolve symbol
symbol  : class StateQosket
location: interface com.bbn.quo.examples.bette.SlideShowState
public interface SlideShowState extends SlideShow, StateQosket
                                                    ^
com/bbn/quo/examples/bette/SlideShowStateWrapper.java:11: cannot resolve symbol
symbol  : class SlideShowStateAdapter
location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
   extends SlideShowStateAdapter
           ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:12: cannot resolve
symbol
symbol  : class SlideShowUserAdaptAdapter
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
   extends SlideShowUserAdaptAdapter
           ^
com/bbn/quo/examples/bette/StateQosketImpl.java:10: cannot resolve symbol
symbol  : class StateQosketSkel
location: class com.bbn.quo.examples.bette.StateQosketImpl
public class StateQosketImpl extends StateQosketSkel
                                      ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:15: cannot resolve symbol
symbol  : class UserAdaptQosketSkel
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
     extends UserAdaptQosketSkel
             ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:16: cannot resolve symbol
symbol  : class UserAdaptDelegateQosket
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
     implements UserAdaptDelegateQosket
                ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:74: cannot resolve symbol
symbol  : variable useInstrumentation
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 useInstrumentation = makeValueSC("Use Instrumentation");
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:75: cannot resolve symbol
symbol  : variable userLatencyThreshold
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 userLatencyThreshold = makeValueSC("User Latency Threshold");
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:76: cannot resolve symbol
symbol  : variable userLatencyThreshold
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 userLatencyThreshold.longValue(3000);
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:77: cannot resolve symbol
symbol  : variable useInstrumentation
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 useInstrumentation.booleanValue(false);
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:79: cannot resolve symbol
symbol  : variable expectedNetworkCapacity
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 expectedNetworkCapacity =
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:95: cannot resolve symbol
symbol  : variable expectedReplySize
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 expectedReplySize = makeDataSC ("Expected Reply Size");
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:96: cannot resolve symbol
symbol  : variable expectedReplySize
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 kernel.bindDataFormula(expectedReplySize,
                                ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:99: cannot resolve symbol
symbol  : variable expectedServerJips
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 expectedServerJips =  makeDataSC("Expected Server Jips");
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:100: cannot resolve symbol
symbol  : variable expectedServerJips
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 kernel.bindDataFormula(expectedServerJips,
                                ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:104: cannot resolve symbol
symbol  : variable expectedInstPerByte
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 expectedInstPerByte = makeDataSC("Expectec Inst/Byte");
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:105: cannot resolve symbol
symbol  : variable expectedInstPerByte
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 kernel.bindDataFormula(expectedInstPerByte,
                                ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:109: cannot resolve symbol
symbol  : variable expectedServerLoadAverage
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 expectedServerLoadAverage =
         ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:111: cannot resolve symbol
symbol  : variable expectedServerLoadAverage
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 kernel.bindDataFormula(expectedServerLoadAverage,
                                ^
com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:127: cannot resolve symbol
symbol  : variable useInstrumentation
location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
	 return useInstrumentation;
                ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:77: inconvertible types
found   : java.lang.Object
required: com.bbn.quo.examples.bette.SlideService
	     SlideService reconstituted_server = (SlideService) deserialize(bytes);
                                                                           ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:78:
activate_object(org.omg.PortableServer.Servant) in
org.omg.PortableServer.POAOperations cannot be applied to
(com.bbn.quo.examples.bette.SlideService)
	     poa.activate_object(reconstituted_server);
                ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:79: cannot resolve symbol
symbol  : class SlideShow
location: class com.bbn.quo.examples.bette.SerializingQosketImpl
	     return ((SlideShow) reconstituted_server._this());
                      ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:79: cannot resolve symbol
symbol  : method _this  ()
location: class com.bbn.quo.examples.bette.SlideService
	     return ((SlideShow) reconstituted_server._this());
                                                     ^
com/bbn/quo/examples/bette/SlideClient.java:110: cannot resolve symbol
symbol  : variable SlideShowHelper
location: class com.bbn.quo.examples.bette.SlideClient
	 slideShow = SlideShowHelper.narrow(raw);
                     ^
com/bbn/quo/examples/bette/SlideClient.java:134: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideClient
	 final octetArrayHolder pixelsHolder = new octetArrayHolder();
               ^
com/bbn/quo/examples/bette/SlideClient.java:134: cannot resolve symbol
symbol  : class octetArrayHolder
location: class com.bbn.quo.examples.bette.SlideClient
	 final octetArrayHolder pixelsHolder = new octetArrayHolder();
                                                   ^
com/bbn/quo/examples/bette/SlideService.java:260: cannot resolve symbol
symbol  : method _this  (org.omg.CORBA.ORB)
location: class com.bbn.quo.examples.bette.SlideService
		     server._this (orb);
                           ^
com/bbn/quo/examples/bette/SlideService.java:265:
publish(com.bbn.quo.examples.bette.Naming,org.omg.PortableServer.POA,org.omg.Por\
tableServer.Servant,java.lang.String) in com.bbn.quo.examples.bette.SlideService
cannot be applied to
(com.bbn.quo.examples.bette.Naming,org.omg.PortableServer.POA,com.bbn.quo.exampl\
es.bette.SlideService,java.lang.String)
		 server.publish(nameHelper, poa, server, "SlideServer");
                       ^
com/bbn/quo/examples/bette/SlideService.java:274:
publish(com.bbn.quo.examples.bette.Naming,org.omg.PortableServer.POA,org.omg.Por\
tableServer.Servant,java.lang.String) in com.bbn.quo.examples.bette.SlideService
cannot be applied to
(com.bbn.quo.examples.bette.Naming,org.omg.PortableServer.POA,com.bbn.quo.exampl\
es.bette.SlideService,java.lang.String)
	     server.publish(nameHelper, poa, server, "SlideServer");
                   ^
com/bbn/quo/examples/bette/SlideShowCountWrapper.java:24: cannot resolve symbol
symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
     	 initSysconds(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowCountWrapper.java:25: cannot resolve symbol
symbol  : method initCallbacks  ()
location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
	 initCallbacks();
         ^
com/bbn/quo/examples/bette/SlideShowCountWrapper.java:26: cannot resolve symbol
symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
	 linkContract(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/WrapperHelper.java:43: cannot resolve symbol
symbol  : variable SlideShowHelper
location: class com.bbn.quo.examples.bette.WrapperHelper
	 server = SlideShowHelper.narrow(raw);
                  ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:95: cannot resolve
symbol
symbol  : class SlideShowInstrumented
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
	 SlideShowInstrumented iserver =
         ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:96: cannot resolve
symbol
symbol  : variable SlideShowInstrumentedHelper
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
	     SlideShowInstrumentedHelper.narrow(iraw);
             ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:99: cannot resolve
symbol
symbol  : method setOrb  (org.omg.CORBA.ORB)
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
	 setOrb(orb);
         ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:103: cannot resolve
symbol
symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
	 initSysconds(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:104: cannot resolve
symbol
symbol  : method initCallbacks  ()
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
	 initCallbacks();
         ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:105: cannot resolve
symbol
symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
	 linkContract(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:109: cannot resolve
symbol
symbol  : method getUseInstrumentationSC  ()
location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
	 useInstrumentation = getUseInstrumentationSC();
                              ^
com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:58: cannot
resolve symbol
symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
      	 initSysconds(kernel);
         ^
com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:59: cannot
resolve symbol
symbol  : method initCallbacks  ()
location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
	 initCallbacks();
         ^
com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:60: cannot
resolve symbol
symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
	 linkContract(kernel);
         ^
com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:61: cannot
resolve symbol
symbol  : method setServer  (com.bbn.quo.examples.bette.SlideService)
location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
	 setServer(server);
         ^
com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:27: cannot resolve symbol
symbol  : class SlideShowInstrumented
location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
	 SlideShowInstrumented iserver =
         ^
com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:28: cannot resolve symbol
symbol  : variable SlideShowInstrumentedHelper
location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
	     SlideShowInstrumentedHelper.narrow(iraw);
             ^
com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:35: cannot resolve symbol
symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
	 initSysconds(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:36: cannot resolve symbol
symbol  : method initCallbacks  ()
location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
	 initCallbacks();
         ^
com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:37: cannot resolve symbol
symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
	 linkContract(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:58: cannot
resolve symbol
symbol  : method setPOA  (org.omg.PortableServer.POA)
location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
	 setPOA(poa);
         ^
com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:59: cannot
resolve symbol
symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
      	 initSysconds(kernel);
         ^
com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:60: cannot
resolve symbol
symbol  : method initCallbacks  ()
location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
	 initCallbacks();
         ^
com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:61: cannot
resolve symbol
symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
	 linkContract(kernel);
         ^
com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:62: cannot
resolve symbol
symbol  : method _this  ()
location: class com.bbn.quo.examples.bette.SlideService
	 linkRemoteObject(server._this());
                                ^
com/bbn/quo/examples/bette/SlideShowStateWrapper.java:25: cannot resolve symbol
symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
      	 initSysconds(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowStateWrapper.java:26: cannot resolve symbol
symbol  : method initCallbacks  ()
location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
	 initCallbacks();
         ^
com/bbn/quo/examples/bette/SlideShowStateWrapper.java:27: cannot resolve symbol
symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
	 linkContract(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:108: cannot resolve
symbol
symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
	 initSysconds(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:109: cannot resolve
symbol
symbol  : method initCallbacks  ()
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
	 initCallbacks();
         ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:110: cannot resolve
symbol
symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
	 linkContract(wrapperHelper.kernel);
         ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:114: cannot resolve
symbol
symbol  : method getUserEnableSmallSC  ()
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
	 userEnableSmall = getUserEnableSmallSC();
                           ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:115: cannot resolve
symbol
symbol  : method getUserEnableUnprocessedSC  ()
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
	 userEnableUnprocessed = getUserEnableUnprocessedSC();
                                 ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:118: cannot resolve
symbol
symbol  : class SlideShowInstrumented
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
	 SlideShowInstrumented iserver =
         ^
com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:119: cannot resolve
symbol
symbol  : variable SlideShowInstrumentedHelper
location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
	     SlideShowInstrumentedHelper.narrow(iraw);
             ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:40: cannot resolve symbol
symbol  : variable userEnableSmall
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
	 userEnableSmall = makeValueSC(kernel, "User Enable Small");
         ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:41: cannot resolve symbol
symbol  : variable userEnableUnprocessed
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
	 userEnableUnprocessed = makeValueSC(kernel, "User Enable Unprocessed");
         ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:42: cannot resolve symbol
symbol  : variable userEnableSmall
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
	 userEnableSmall.booleanValue(false);
         ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:43: cannot resolve symbol
symbol  : variable userEnableUnprocessed
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
	 userEnableUnprocessed.booleanValue(false);
         ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:50: cannot resolve symbol
symbol  : variable userEnableSmall
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
	 return userEnableSmall;
                ^
com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:54: cannot resolve symbol
symbol  : variable userEnableUnprocessed
location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
	 return userEnableUnprocessed;
                ^
96 errors
jar cf bette.jar -C /home/yamuna/New_Quo/quo/examples/bette/.classes .
ln -sf wrapper SlideClient
ln -sf wrapper SlideService
ln -sf wrapper TickleSC
ln -sf wrapper RunKernel
ln -sf wrapper KernelGui

#21 From: Craig Rodrigues <crodrigu@...>
Date: Thu Dec 13, 2001 9:05 am
Subject: [yamuna@...: RSS - Progress and Issues]
crodrigu@...
Send Email Send Email
 
----- Forwarded message from Yamuna Krishnamurthy <yamuna@...> -----

Resent-Message-Id: <200112130856.CAA08726@...>
Delivered-To: oomworks-com-av@...
X-Sent: 13 Dec 2001 08:56:40 GMT
Date: Thu, 13 Dec 2001 02:57:18 -0500
From: Yamuna Krishnamurthy <yamuna@...>
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4) Gecko/20011019
Netscape6/6.2
X-Accept-Language: en-us
To: av@...
Subject: RSS - Progress and Issues
Resent-To: yamuna@..., pradeep@..., crodrigues@...,
         gduzan@..., jloyall@...
Resent-Date: Thu, 13 Dec 2001 02:56:53 -0600
Resent-From: Irfan Pyarali <irfan@...>

Hi:

Progress
------

I was able to follow the instructions sent by Craig:

STEP 1
======
Get the JDK.  We have been using JDK 1.3 from Sun:
http://java.sun.com/j2se/

STEP 2
======
Get JacORB 1.3.30, precompiled version:
http://www.jacorb.org/download.html

STEP 3
======
Get Remos 2.0:
http://www-2.cs.cmu.edu/afs/cs.cmu.edu/project/cmcl/www/remulac/remos.html
Compile and install it.

STEP 4
======
Go to the QuO release page and boomark it:
http://www.dist-systems.bbn.com/tech/QuO/release/latest/index.html

>From the release page, go to the QuO source packages link:
http://www.dist-systems.bbn.com/tech/QuO/release/latest/src/

Get the following packages:
quoCore.src.tgz
quoRemos.src.tgz
quoRsvporb.src.tgz

We don't need OODTE, so don't get that.

STEP 5
======
>From the QuO release page, follow the instructions for building
the necessary pieces in section 2.


I was able to overcome initial compile problems (thanks to Gary and the
quo_help newsgroup)  and also run the bette example (on one host) and
see the Batte Davis Slide Show. This is a good example (along with
bette_rmi) to get an idea of how to use RSS in junction with
applications. I am presntly working on understanding this better.

Issues
----

1. I am still unable to run the bette example across two  different
hosts. I think the problem is in the configuration of my hosts. I am
trying to run the example between a redhat 7.1 and redhat 7.0 using the
same build. It was originally compiled on 7.0. Is this a problem?

2. I read through both the User and Reference Guide. It would be a great
help if I could get a code walk through of the bette example that uses
RSS with the Remos Data Feed.

3. Could I get a documentation regarding the relationships between
qoskets, adapters, delegates, contracts etc. in some form of UML
notation so I have a better idea of how they all fit together.

4. It would help to get sample config files for configuring Remos as per
the BBN testbed.

I hope we can discuss these issues tomorrow and fix up a time for the
codewalk through preferably sometime this Fri.

Thanks
Yamuna






----- End forwarded message -----

--
Craig Rodrigues        Distributed Systems and Logistics, Office 6/304
crodrigu@...       BBN Technologies
(617) 873-4725         Cambridge, MA

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#20 From: John Zinky <jzinky@...>
Date: Tue Dec 11, 2001 3:19 pm
Subject: Re: Running Examples
jzinky@...
Send Email Send Email
 
Yamuna,

The bette example uses a webserver to publish iors and not a CORBA
name service.

The betty server ior will be written to a file in the Directory
Directory /home/yamuna/ior/

The client picks up the IOR from the web page:
  BaseURL http://deepthought/ior

So Directory must be published on the webpage:
Maybe you should use
Directory /home/yamuna/public_html/ior/

also your username better be the same on both hosts:

My ior file looks like:
  /home/jzinky/public_html/BBN_jzinky_demo_bottleneck_SlideServer.ior

zinky

Yamuna Krishnamurthy writes:
  > Hi:
  >
  > I sent the following mail last week. Could someone help me with this?
  >
  > Thanks
  > Yamuna
  >
  > > Hi:
  > >
  > > I was able to run the bette example on the same host. But I am unable to
  > > run it on a different host. I have attached the properties file on the
  > > two hosts.
  > >
  > > Thanks
  > > Yamuna
  > >
  >
  > BaseURL http://deepthought/ior
  > #Directory /home/yamuna/ior/
  > Organization BBN
  > #Username is retrieved automatically if it is not set in properties file
  > #User noman
  > Experiment demo
  > Application bottleneck
  >
  > BaseURL http://deepthought/ior
  > Directory /home/yamuna/ior/
  > Organization BBN
  > #Username is retrieved automatically if it is not set in properties file
  > #User noman
  > Experiment demo
  > Application bottleneck
  >

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#19 From: Yamuna Krishnamurthy <yamuna@...>
Date: Mon Dec 10, 2001 11:38 pm
Subject: Running Examples
yamuna@...
Send Email Send Email
 
Hi:

I sent the following mail last week. Could someone help me with this?

Thanks
Yamuna

> Hi:
>
> I was able to run the bette example on the same host. But I am unable to
> run it on a different host. I have attached the properties file on the
> two hosts.
>
> Thanks
> Yamuna
>
BaseURL http://deepthought/ior
#Directory /home/yamuna/ior/
Organization BBN
#Username is retrieved automatically if it is not set in properties file
#User noman
Experiment demo
Application bottleneck
BaseURL http://deepthought/ior
Directory /home/yamuna/ior/
Organization BBN
#Username is retrieved automatically if it is not set in properties file
#User noman
Experiment demo
Application bottleneck

#18 From: Paul Rubel <prubel@...>
Date: Mon Dec 10, 2001 2:46 pm
Subject: QuO 3.0.9 released
prubel@...
Send Email Send Email
 
QuO 3.0.9 has been released today.

You can download it at
http://www.dist-systems.bbn.com/tech/QuO/release/latest/index.html

  If you are using quo on NT be advised that quogen is exhibiting some
odd behavior with the simple example. We are looking into this and
hope to get to the bottom of this problem soon.

Some of the changes / new features include
------------------------------------------

-- added a new constructor to server side delegate and adaptor for RMI
to handle socket factories. An RMISocketFactory can now be passed in
as an arg to this cons. This was a change request from Rich Shapiro.
   [Partha Nov 19 01]

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#17 From: Yamuna Krishnamurthy <yamuna@...>
Date: Wed Dec 5, 2001 4:27 pm
Subject: Running Examples
yamuna@...
Send Email Send Email
 
Hi:

I was able to run the bette example on the same host. But I am unable to
run it on a different host. I have attached the properties file on the
two hosts.

Thanks
Yamuna
BaseURL http://deepthought/ior
#Directory /home/yamuna/ior/
Organization BBN
#Username is retrieved automatically if it is not set in properties file
#User noman
Experiment demo
Application bottleneck
BaseURL http://deepthought/ior
Directory /home/yamuna/ior/
Organization BBN
#Username is retrieved automatically if it is not set in properties file
#User noman
Experiment demo
Application bottleneck

#16 From: Gary Duzan <gduzan@...>
Date: Fri Nov 30, 2001 3:27 pm
Subject: Re: Building Bette Example
gduzan@...
Send Email Send Email
 
What version of QuO are you using? Check $QUO_ROOT/VERSION
and let me know what it says. It looks like your quogen may be
out of sync with the examples. You might also try
"make realclean && make" in $QUO_ROOT/codegen, then try again.

					 Gary Duzan
					 BBN Technologies
					 A Verizon Company



In Message <3C06751A.70105@...> ,
    Yamuna Krishnamurthy <yamuna@...> wrote:

=>Hi:
=>
=>> The bette examples depend on the java qoskets in $QUO_ROOT/qoskets
=>> having been built already (bw_select, count, instrumentation, rss).
=>> If the README doesn't say this, that's a bug in the README.  The
=>> missing classes reported by javac are all from qosket jars.
=>
=>The README does ask to compile the qoskets. I added the qosket jars to
=>the CLASSPATH. But I still get the same errors. My CLASSPATH is as follows:
=>
=>../../qosket/rss/rss.jar:../../qosket/instrumentation/instrumentation.jar:../.\
./qosket/count/count.jar:../../qosket/bw_sel
ect/bw_select.jar:/usr/java/jdk1.3.1/jre/lib/rt.jar:/usr/java/jdk1.3.1/jre/lib/i\
18n.jar:/home/yamuna/JacORB1_3_30/idl.jar:/h
ome/yamuna/JacORB1_3_30/jacorb.jar:./better.jar
=>
=>Thanks
=>Yamuna
=>
=>--------------050705060303080006090006
=>Content-Type: text/plain;
=> name="make.log"
=>Content-Transfer-Encoding: 7bit
=>Content-Disposition: inline;
=> filename="make.log"
=>
=>cd idl; make
=>make[1]: Entering directory `/home/yamuna/quo/examples/bette/idl'
=>make[1]: Nothing to be done for `build'.
=>make[1]: Leaving directory `/home/yamuna/quo/examples/bette/idl'
=>cd qdl; make
=>make[1]: Entering directory `/home/yamuna/quo/examples/bette/qdl'
=>/home/yamuna/quo/bin/quogen \
=>--target=client \
=>--cdl=/home/yamuna/quo/qosket/count/qdl/Count.cdl \
=>--idl=idl/SlideShow.idl \
=>--idl=/home/yamuna/quo/qosket/count/qdl/Count.idl \
=>--qosket=qosket::count::CountQosket \
=>--properties=/home/yamuna/quo/qosket/count/qdl/CountCorba.prop \
=>--business=slide::SlideShow \
=>--adapter=SlideShowCountAdapter \
=>--asl=/home/yamuna/quo/qosket/count/qdl/CountTemplate.asl \
=>--asl=Count.asl \
=>--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/quo/idl -I/home/y
amuna/quo/examples/bette -I/home/yamuna/quo/qosket -i2jpackage
quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
  -i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data
-i2jpackage instr:com.bbn.quo.instr.corba -i2jpackage
instr_sc:com.bbn.quo.instr -i2jpackage slide:com.bbn.quo.examples.bette
-i2jpackage qosket:com.bbn.quo.qosket
=>got filearg with ending = pter
=>WARNING: unknown cmdline option = --adapter=SlideShowCountAdapter
=>/home/yamuna/quo/bin/quogen \
=>--target=client \
=>--cdl=/home/yamuna/quo/qosket/rss/qdl/RSS.cdl \
=>--idl=/home/yamuna/quo/qosket/rss/qdl/RSS.idl \
=>--idl=idl/SlideShowInstrumented.idl \
=>--idl=idl/SlideShow.idl \
=>--idl=quo_corba.idl \
=>--adapterqosket=qosket::rss::RSSQosket \
=>--delegateqosket=qosket::rss::RSSDelegateQosket \
=>--properties=/home/yamuna/quo/qosket/rss/qdl/RSSCorba.prop \
=>--business=slide::SlideShow \
=>--adapter=SlideShowRSSAdapter \
=>--asl=/home/yamuna/quo/qosket/instrumentation/qdl/InstrumentationTemplate.asl
\
=>--asl=/home/yamuna/quo/qosket/instrumentation/qdl/CorbaInstrumentationTemplate\
.asl \
=>--asl=SlideShowInstrumentation.asl \
=>--asl=SlideShow.asl \
=>--asl=RSS.asl \
=>--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/quo/idl -I/home/y
amuna/quo/examples/bette -I/home/yamuna/quo/qosket -i2jpackage
quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
  -i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data
-i2jpackage instr:com.bbn.quo.instr.corba -i2jpackage
instr_sc:com.bbn.quo.instr -i2jpackage slide:com.bbn.quo.examples.bette
-i2jpackage qosket:com.bbn.quo.qosket
=>got filearg with ending = pter
=>WARNING: unknown cmdline option = --adapter=SlideShowRSSAdapter
=>/home/yamuna/quo/bin/quogen  \
=>--target=server \
=>--cdl=/home/yamuna/quo/qosket/instrumentation/qdl/SimpleInstrumentedServer.cdl
\
=>--idl=/home/yamuna/quo/qosket/instrumentation/qdl/Instrumentation.idl \
=>--idl=idl/SlideShowInstrumented.idl \
=>--idl=quo_corba.idl \
=>--adapterqosket=qosket::instrumentation::ServerInstrumentationQosket \
=>--delegateqosket=qosket::instrumentation::ServerInstrumentationDelegateQosket
\
=>--properties=/home/yamuna/quo/qosket/instrumentation/qdl/ServerInstrumentation\
Corba.prop \
=>--business=slide::SlideShowInstrumented \
=>--adapter=SlideShowInstrumentedServerAdapter \
=>--asl=/home/yamuna/quo/qosket/instrumentation/qdl/SimpleInstrumentedServerTemp\
late.asl \
=>--asl=SlideShowInstrumentedServer.asl \
=>--asl=SlideShowServer.asl \
=>--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/quo/idl -I/home/y
amuna/quo/examples/bette -I/home/yamuna/quo/qosket -i2jpackage
quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
  -i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data
-i2jpackage instr:com.bbn.quo.instr.corba -i2jpackage
instr_sc:com.bbn.quo.instr -i2jpackage slide:com.bbn.quo.examples.bette
-i2jpackage qosket:com.bbn.quo.qosket
=>got filearg with ending = pter
=>WARNING: unknown cmdline option = --adapter=SlideShowInstrumentedServerAdapter
=>/home/yamuna/quo/bin/quogen  \
=>--generate=both \
=>--target=server \
=>--cdl=State.cdl \
=>--idl=idl/SlideShow.idl \
=>--idl=SlideQoskets.idl \
=>--adapterqosket=slide::SerializingQosket \
=>--delegateqosket=slide::SerializingDelegateQosket \
=>--business=slide::SlideShow \
=>--adapter=SlideShowSerializeAdapter \
=>--asl=Serialize.asl \
=>--qosketimpl=com.bbn.quo.examples.bette.SerializingQosketImpl \
=>--debuglevel=warn --language=java --middleware=corba
--package=com.bbn.quo.examples.bette -I/home/yamuna/quo/idl -I/home/y
amuna/quo/examples/bette -I/home/yamuna/quo/qosket -i2jpackage
quo:com.bbn.quo.corba -i2jpackage quo_corba:com.bbn.quo.corba
  -i2jpackage quo_sc:com.bbn.quo -i2jpackage quo_data:com.bbn.quo.data
-i2jpackage instr:com.bbn.quo.instr.corba -i2jpackage
instr_sc:com.bbn.quo.instr -i2jpackage slide:com.bbn.quo.examples.bette
-i2jpackage qosket:com.bbn.quo.qosket
=>got filearg with ending = pter
=>WARNING: unknown cmdline option = --adapter=SlideShowSerializeAdapter
=>/home/yamuna/quo/bin/jacoc -d /home/yamuna/quo/examples/bette/.classes
com/bbn/quo/examples/bette/*.java
=>com/bbn/quo/examples/bette/DiagnoseDelegateQosket.java:15: cannot resolve
symbol
=>symbol  : class InstrumentationDelegateQosket
=>location: package instrumentation
=>       extends
com.bbn.quo.qosket.instrumentation.InstrumentationDelegateQosket
=>                                                 ^
=>com/bbn/quo/examples/bette/DiagnoseQosket.java:15: cannot resolve symbol
=>symbol  : class InstrumentationQosket
=>location: package instrumentation
=>       extends com.bbn.quo.qosket.instrumentation.InstrumentationQosket
=>                                                 ^
=>com/bbn/quo/examples/bette/DiagnoseQosketSkel.java:15: cannot resolve symbol
=>symbol  : class InstrumentationQosketImpl
=>location: package corba
=>         extends
com.bbn.quo.qosket.instrumentation.corba.InstrumentationQosketImpl
=>                                                         ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedAdapter.java:16: cannot
resolve symbol
=>symbol  : class ServerInstrumentationQosket
=>location: package instrumentation
=>       implements
com.bbn.quo.qosket.instrumentation.ServerInstrumentationQosket
=>                                                    ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedAdapter.java:18: cannot
resolve symbol
=>symbol  : class ServerInstrumentationQosketImpl
=>location: package corba
=>  private
com.bbn.quo.qosket.instrumentation.corba.ServerInstrumentationQosketImpl qosket;
=>                                                  ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_obj\
ect.java:20: cannot resolve symbol
=>symbol  : class ServerInstrumentationDelegateQosket
=>location: package instrumentation
=>  protected
com.bbn.quo.qosket.instrumentation.ServerInstrumentationDelegateQosket qk;
=>                                              ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_obj\
ect.java:22: cannot resolve symbol
=>symbol  : class ServerInstrumentationDelegateQosket
=>location: package instrumentation
=>  void
set_qk(com.bbn.quo.qosket.instrumentation.ServerInstrumentationDelegateQosket
arg1){
=>                                                ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedInstrumentedServerDelegate_obj\
ect.java:39: cannot resolve symbol
=>symbol  : class ServerInstrumentationDelegateQosket
=>location: package instrumentation
=>  void
set_qosket(com.bbn.quo.qosket.instrumentation.ServerInstrumentationDelegateQoske\
t qs){
=>                                                    ^
=>com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:21: cannot resolve
symbol
=>symbol  : class RSSDelegateQosket
=>location: package rss
=>  protected com.bbn.quo.qosket.rss.RSSDelegateQosket qk;
=>                                  ^
=>com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:26: cannot resolve
symbol
=>symbol  : class RSSDelegateQosket
=>location: package rss
=>  void set_qk(com.bbn.quo.qosket.rss.RSSDelegateQosket arg1){
=>                                    ^
=>com/bbn/quo/examples/bette/SlideShowRSSDelegate_client.java:43: cannot resolve
symbol
=>symbol  : class RSSDelegateQosket
=>location: package rss
=>  void set_qosket(com.bbn.quo.qosket.rss.RSSDelegateQosket qs){
=>                                        ^
=>com/bbn/quo/examples/bette/UserAdaptDelegateQosket.java:15: cannot resolve
symbol
=>symbol  : class InstrumentationDelegateQosket
=>location: package instrumentation
=>       extends
com.bbn.quo.qosket.instrumentation.InstrumentationDelegateQosket
=>                                                 ^
=>com/bbn/quo/examples/bette/UserAdaptQosket.java:15: cannot resolve symbol
=>symbol  : class InstrumentationQosket
=>location: package instrumentation
=>       extends com.bbn.quo.qosket.instrumentation.InstrumentationQosket
=>                                                 ^
=>com/bbn/quo/examples/bette/UserAdaptQosketSkel.java:15: cannot resolve symbol
=>symbol  : class InstrumentationQosketImpl
=>location: package corba
=>         extends
com.bbn.quo.qosket.instrumentation.corba.InstrumentationQosketImpl
=>                                                         ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:80: cannot
resolve symbol
=>symbol  : method createTraceRec  (java.lang.String)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    rec = qk.createTraceRec(methodID);
=>            ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:89: cannot
resolve symbol
=>symbol  : method clientRequestIn1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    qk.clientRequestIn1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:90: cannot
resolve symbol
=>symbol  : method createSignalAssociations  (com.bbn.quo.instr.corba.Trace_rec)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    sig = qk.createSignalAssociations(rec);
=>            ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:94: cannot
resolve symbol
=>symbol  : method clientRequestOut1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    qk.clientRequestOut1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:97: cannot
resolve symbol
=>symbol  : method getInstrumentedServer  ()
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>   iServer = ((SlideShowInstrumented) qk.getInstrumentedServer());
=>                                               ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:134: cannot
resolve symbol
=>symbol  : method clientReplyIn1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    qk.clientReplyIn1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:135: cannot
resolve symbol
=>symbol  : method createSignalAssociations  (com.bbn.quo.instr.corba.Trace_rec)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    sig = qk.createSignalAssociations(rec);
=>            ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:139: cannot
resolve symbol
=>symbol  : method clientReplyOut1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    qk.clientReplyOut1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseDelegate_client.java:140: cannot
resolve symbol
=>symbol  : method registerCall  (com.bbn.quo.instr.corba.Trace_rec)
=>location: interface com.bbn.quo.examples.bette.DiagnoseDelegateQosket
=>    qk.registerCall(rec);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedAdapter.java:23: cannot
resolve symbol
=>symbol  : class ServerInstrumentationQosketImpl
=>location: package corba
=>     this.qosket  = new
com.bbn.quo.qosket.instrumentation.corba.ServerInstrumentationQosketImpl();
=>                                                                ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:78: cannot
resolve symbol
=>symbol  : method createTraceRec  (java.lang.String)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    rec = qk.createTraceRec(methodID);
=>            ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:87: cannot
resolve symbol
=>symbol  : method clientRequestIn1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    qk.clientRequestIn1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:88: cannot
resolve symbol
=>symbol  : method createSignalAssociations  (com.bbn.quo.instr.corba.Trace_rec)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    sig = qk.createSignalAssociations(rec);
=>            ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:92: cannot
resolve symbol
=>symbol  : method clientRequestOut1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    qk.clientRequestOut1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:95: cannot
resolve symbol
=>symbol  : method getInstrumentedServer  ()
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>   iServer = ((SlideShowInstrumented) qk.getInstrumentedServer());
=>                                               ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:136: cannot
resolve symbol
=>symbol  : method clientReplyIn1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    qk.clientReplyIn1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:137: cannot
resolve symbol
=>symbol  : method createSignalAssociations  (com.bbn.quo.instr.corba.Trace_rec)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    sig = qk.createSignalAssociations(rec);
=>            ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:141: cannot
resolve symbol
=>symbol  : method clientReplyOut1  (com.bbn.quo.instr.corba.Trace_rec,int)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    qk.clientReplyOut1(rec, length);
=>      ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptDelegate_client.java:142: cannot
resolve symbol
=>symbol  : method registerCall  (com.bbn.quo.instr.corba.Trace_rec)
=>location: interface com.bbn.quo.examples.bette.UserAdaptDelegateQosket
=>    qk.registerCall(rec);
=>      ^
=>33 errors
=>touch .tag
=>cd ..; make clean
=>make[2]: Entering directory `/home/yamuna/quo/examples/bette'
=>rm -f bette.jar
=>make[2]: Leaving directory `/home/yamuna/quo/examples/bette'
=>make[1]: Leaving directory `/home/yamuna/quo/examples/bette/qdl'
=>/home/yamuna/quo/bin/jacoc -d /home/yamuna/quo/examples/bette/.classes
com/bbn/quo/examples/bette/*.java
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:27: cannot resolve symbol
=>symbol  : class DiagnoseQosketSkel
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=>    extends DiagnoseQosketSkel
=>            ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:28: cannot resolve symbol
=>symbol  : class DiagnoseDelegateQosket
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=>    implements DiagnoseDelegateQosket
=>               ^
com/bbn/quo/examples/bette/SerializingQosketImpl.java:18: cannot resolve symbol
=>symbol  : class SerializingQosketSkel
=>location: class com.bbn.quo.examples.bette.SerializingQosketImpl
=>    extends SerializingQosketSkel
=>            ^
=>com/bbn/quo/examples/bette/SerializingQosketImpl.java:19: cannot resolve
symbol
=>symbol  : class SerializingDelegateQosket
=>location: class com.bbn.quo.examples.bette.SerializingQosketImpl
=>    implements SerializingDelegateQosket
=>               ^
=>com/bbn/quo/examples/bette/SlideShowCountWrapper.java:10: cannot resolve
symbol
=>symbol  : class SlideShowCountAdapter
=>location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
=>  extends SlideShowCountAdapter
=>          ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:12: cannot resolve
symbol
=>symbol  : class SlideShowDiagnoseAdapter
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=>  extends SlideShowDiagnoseAdapter
=>          ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:18: cannot
resolve symbol
=>symbol  : class SlideShowInstrumentedServerAdapter
=>location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
=>  extends SlideShowInstrumentedServerAdapter
=>          ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:10: cannot resolve symbol
=>symbol  : class SlideShowRSSAdapter
=>location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
=>  extends SlideShowRSSAdapter
=>          ^
=>com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:18: cannot
resolve symbol
=>symbol  : class SlideShowSerializeAdapter
=>location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
=>  extends SlideShowSerializeAdapter
=>          ^
=>com/bbn/quo/examples/bette/SlideShowState.java:10: cannot resolve symbol
=>symbol  : class StateQosket
=>location: interface com.bbn.quo.examples.bette.SlideShowState
=>public interface SlideShowState extends SlideShow, StateQosket
=>                                                   ^
=>com/bbn/quo/examples/bette/SlideShowStateWrapper.java:11: cannot resolve
symbol
=>symbol  : class SlideShowStateAdapter
=>location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
=>  extends SlideShowStateAdapter
=>          ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:12: cannot resolve
symbol
=>symbol  : class SlideShowUserAdaptAdapter
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=>  extends SlideShowUserAdaptAdapter
=>          ^
=>com/bbn/quo/examples/bette/StateQosketImpl.java:10: cannot resolve symbol
=>symbol  : class StateQosketSkel
=>location: class com.bbn.quo.examples.bette.StateQosketImpl
=>public class StateQosketImpl extends StateQosketSkel
=>                                     ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:15: cannot resolve symbol
=>symbol  : class UserAdaptQosketSkel
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=>    extends UserAdaptQosketSkel
=>            ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:16: cannot resolve symbol
=>symbol  : class UserAdaptDelegateQosket
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=>    implements UserAdaptDelegateQosket
=>               ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:74: cannot resolve symbol
=>symbol  : variable useInstrumentation
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> useInstrumentation = makeValueSC("Use Instrumentation");
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:75: cannot resolve symbol
=>symbol  : variable userLatencyThreshold
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> userLatencyThreshold = makeValueSC("User Latency Threshold");
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:76: cannot resolve symbol
=>symbol  : variable userLatencyThreshold
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> userLatencyThreshold.longValue(3000);
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:77: cannot resolve symbol
=>symbol  : variable useInstrumentation
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> useInstrumentation.booleanValue(false);
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:79: cannot resolve symbol
=>symbol  : variable expectedNetworkCapacity
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> expectedNetworkCapacity =
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:95: cannot resolve symbol
=>symbol  : variable expectedReplySize
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> expectedReplySize = makeDataSC ("Expected Reply Size");
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:96: cannot resolve symbol
=>symbol  : variable expectedReplySize
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> kernel.bindDataFormula(expectedReplySize,
=>                               ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:99: cannot resolve symbol
=>symbol  : variable expectedServerJips
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> expectedServerJips =  makeDataSC("Expected Server Jips");
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:100: cannot resolve symbol
=>symbol  : variable expectedServerJips
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> kernel.bindDataFormula(expectedServerJips,
=>                               ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:104: cannot resolve symbol
=>symbol  : variable expectedInstPerByte
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> expectedInstPerByte = makeDataSC("Expectec Inst/Byte");
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:105: cannot resolve symbol
=>symbol  : variable expectedInstPerByte
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> kernel.bindDataFormula(expectedInstPerByte,
=>                               ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:109: cannot resolve symbol
=>symbol  : variable expectedServerLoadAverage
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> expectedServerLoadAverage =
=>        ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:111: cannot resolve symbol
=>symbol  : variable expectedServerLoadAverage
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> kernel.bindDataFormula(expectedServerLoadAverage,
=>                               ^
=>com/bbn/quo/examples/bette/DiagnoseQosketImpl.java:127: cannot resolve symbol
=>symbol  : variable useInstrumentation
=>location: class com.bbn.quo.examples.bette.DiagnoseQosketImpl
=> return useInstrumentation;
=>               ^
=>com/bbn/quo/examples/bette/SlideShowCountWrapper.java:9:
com.bbn.quo.examples.bette.SlideShowCountWrapper should be declar
ed abstract; it does not define _is_a(java.lang.String) in
com.bbn.quo.examples.bette.SlideShowCountWrapper
=>public class SlideShowCountWrapper
=>       ^
=>com/bbn/quo/examples/bette/SlideShowCountWrapper.java:24: cannot resolve
symbol
=>symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
=>      initSysconds(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowCountWrapper.java:25: cannot resolve
symbol
=>symbol  : method initCallbacks  ()
=>location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
=> initCallbacks();
=>        ^
=>com/bbn/quo/examples/bette/SlideShowCountWrapper.java:26: cannot resolve
symbol
=>symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
=> linkContract(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowCountWrapper.java:27: cannot resolve
symbol
=>symbol  : method linkRemoteObject  (com.bbn.quo.examples.bette.SlideShow)
=>location: class com.bbn.quo.examples.bette.SlideShowCountWrapper
=> linkRemoteObject(wrapperHelper.server);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:11:
com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper should be
  declared abstract; it does not define _is_a(java.lang.String) in
com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=>public class SlideShowDiagnoseWrapper
=>       ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:97: cannot resolve
symbol
=>symbol  : method setInstrumentedServer 
(com.bbn.quo.examples.bette.SlideShowInstrumented)
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> setInstrumentedServer(iserver);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:99: cannot resolve
symbol
=>symbol  : method setOrb  (org.omg.CORBA.ORB)
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> setOrb(orb);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:100: cannot resolve
symbol
=>symbol  : method setServer 
(java.lang.String,com.bbn.quo.examples.bette.SlideShow)
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> setServer("com.bbn.quo.example.slideshow.SlideService",
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:103: cannot resolve
symbol
=>symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> initSysconds(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:104: cannot resolve
symbol
=>symbol  : method initCallbacks  ()
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> initCallbacks();
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:105: cannot resolve
symbol
=>symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> linkContract(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:106: cannot resolve
symbol
=>symbol  : method linkRemoteObject  (com.bbn.quo.examples.bette.SlideShow)
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> linkRemoteObject(wrapperHelper.server);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowDiagnoseWrapper.java:109: cannot resolve
symbol
=>symbol  : method getUseInstrumentationSC  ()
=>location: class com.bbn.quo.examples.bette.SlideShowDiagnoseWrapper
=> useInstrumentation = getUseInstrumentationSC();
=>                             ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:58: cannot
resolve symbol
=>symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
=>       initSysconds(kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:59: cannot
resolve symbol
=>symbol  : method initCallbacks  ()
=>location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
=> initCallbacks();
=>        ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:60: cannot
resolve symbol
=>symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
=> linkContract(kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowInstrumentedServerWrapper.java:61: cannot
resolve symbol
=>symbol  : method setServer  (com.bbn.quo.examples.bette.SlideService)
=>location: class com.bbn.quo.examples.bette.SlideShowInstrumentedServerWrapper
=> setServer(server);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:9:
com.bbn.quo.examples.bette.SlideShowRSSWrapper should be declared a
bstract; it does not define _is_a(java.lang.String) in
com.bbn.quo.examples.bette.SlideShowRSSWrapper
=>public class SlideShowRSSWrapper
=>       ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:30: cannot resolve symbol
=>symbol  : method setInstrumentedServer 
(com.bbn.quo.examples.bette.SlideShowInstrumented)
=>location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
=> setInstrumentedServer(iserver);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:33: cannot resolve symbol
=>symbol  : method setServer 
(<null>,java.lang.String,com.bbn.quo.examples.bette.SlideShowInstrumented)
=>location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
=> setServer(null, "com.bbn.quo.example.slideshow.SlideService", iserver);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:35: cannot resolve symbol
=>symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
=> initSysconds(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:36: cannot resolve symbol
=>symbol  : method initCallbacks  ()
=>location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
=> initCallbacks();
=>        ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:37: cannot resolve symbol
=>symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
=> linkContract(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowRSSWrapper.java:38: cannot resolve symbol
=>symbol  : method linkRemoteObject  (com.bbn.quo.examples.bette.SlideShow)
=>location: class com.bbn.quo.examples.bette.SlideShowRSSWrapper
=> linkRemoteObject(wrapperHelper.server);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:58: cannot
resolve symbol
=>symbol  : method setPOA  (org.omg.PortableServer.POA)
=>location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
=> setPOA(poa);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:59: cannot
resolve symbol
=>symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
=>       initSysconds(kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:60: cannot
resolve symbol
=>symbol  : method initCallbacks  ()
=>location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
=> initCallbacks();
=>        ^
=>com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:61: cannot
resolve symbol
=>symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
=> linkContract(kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowSerializingServerWrapper.java:62: cannot
resolve symbol
=>symbol  : method linkRemoteObject  (com.bbn.quo.examples.bette.SlideShow)
=>location: class com.bbn.quo.examples.bette.SlideShowSerializingServerWrapper
=> linkRemoteObject(server._this());
=>        ^
=>com/bbn/quo/examples/bette/SlideShowStateWrapper.java:10:
com.bbn.quo.examples.bette.SlideShowStateWrapper should be decla
red abstract; it does not define _is_a(java.lang.String) in
com.bbn.quo.examples.bette.SlideShowStateWrapper
=>public class SlideShowStateWrapper
=>       ^
=>com/bbn/quo/examples/bette/SlideShowStateWrapper.java:25: cannot resolve
symbol
=>symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
=>       initSysconds(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowStateWrapper.java:26: cannot resolve
symbol
=>symbol  : method initCallbacks  ()
=>location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
=> initCallbacks();
=>        ^
=>com/bbn/quo/examples/bette/SlideShowStateWrapper.java:27: cannot resolve
symbol
=>symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
=> linkContract(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowStateWrapper.java:28: cannot resolve
symbol
=>symbol  : method linkRemoteObject  (com.bbn.quo.examples.bette.SlideShow)
=>location: class com.bbn.quo.examples.bette.SlideShowStateWrapper
=> linkRemoteObject(wrapperHelper.server);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:11:
com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper should
be declared abstract; it does not define _is_a(java.lang.String) in
com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=>public class SlideShowUserAdaptWrapper
=>       ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:108: cannot resolve
symbol
=>symbol  : method initSysconds  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=> initSysconds(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:109: cannot resolve
symbol
=>symbol  : method initCallbacks  ()
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=> initCallbacks();
=>        ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:110: cannot resolve
symbol
=>symbol  : method linkContract  (com.bbn.quo.corba.QuoKernel)
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=> linkContract(wrapperHelper.kernel);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:111: cannot resolve
symbol
=>symbol  : method linkRemoteObject  (com.bbn.quo.examples.bette.SlideShow)
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=> linkRemoteObject(wrapperHelper.server);
=>        ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:114: cannot resolve
symbol
=>symbol  : method getUserEnableSmallSC  ()
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=> userEnableSmall = getUserEnableSmallSC();
=>                          ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:115: cannot resolve
symbol
=>symbol  : method getUserEnableUnprocessedSC  ()
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=> userEnableUnprocessed = getUserEnableUnprocessedSC();
=>                                ^
=>com/bbn/quo/examples/bette/SlideShowUserAdaptWrapper.java:120: cannot resolve
symbol
=>symbol  : method setInstrumentedServer 
(com.bbn.quo.examples.bette.SlideShowInstrumented)
=>location: class com.bbn.quo.examples.bette.SlideShowUserAdaptWrapper
=> setInstrumentedServer(iserver);
=>        ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:40: cannot resolve symbol
=>symbol  : variable userEnableSmall
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=> userEnableSmall = makeValueSC(kernel, "User Enable Small");
=>        ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:41: cannot resolve symbol
=>symbol  : variable userEnableUnprocessed
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=> userEnableUnprocessed = makeValueSC(kernel, "User Enable Unprocessed");
=>        ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:42: cannot resolve symbol
=>symbol  : variable userEnableSmall
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=> userEnableSmall.booleanValue(false);
=>        ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:43: cannot resolve symbol
=>symbol  : variable userEnableUnprocessed
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=> userEnableUnprocessed.booleanValue(false);
=>        ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:50: cannot resolve symbol
=>symbol  : variable userEnableSmall
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=> return userEnableSmall;
=>               ^
=>com/bbn/quo/examples/bette/UserAdaptQosketImpl.java:54: cannot resolve symbol
=>symbol  : variable userEnableUnprocessed
=>location: class com.bbn.quo.examples.bette.UserAdaptQosketImpl
=> return userEnableUnprocessed;
=>               ^
=>Note: Some input files use or override a deprecated API.
=>Note: Recompile with -deprecation for details.
=>78 errors
=>jar cf bette.jar -C /home/yamuna/quo/examples/bette/.classes .
=>

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#15 From: Michael Atighetchi <matighet@...>
Date: Mon Nov 26, 2001 3:41 pm
Subject: Re: quoCore MSVC project files
matighet@...
Send Email Send Email
 
Hey Andrey,

I briefly looked at it, haven't finished compiling with your dsp files yet
though.
Since I want your changes to be included in this months release, I'll have to
look into
this some more in the next couple of days...
I'll keep you posted.

Michael

PS: Wie ist das Wetter in Muenchen denn so?


On Mon, Nov 26, 2001 at 04:18:14PM +0100, Nechypurenko Andrey wrote:
> Hi, Michael.
>
> I just want to ask - did you have a chance to take a look at
> project files I sent? Is it correct from your point of view? Or
> should I change something else?
>
>
> Thank you.
> Andrey.
>
> -----Original Message-----
> From: Nechypurenko Andrey
> Sent: Tuesday, November 13, 2001 9:12 PM
> To: 'quo-users@...'
> Cc: 'Michael Atighetchi'
> Subject: RE: [quo-users] quoCore compilation problems on Win32
>
>
> Hi, Michael.
>
>
> >How did you unzip the src.tgz file? Winzip does the conversion
> automatically.
> I am using WindowsCommander which has built-in support for many archive
> types including tgz. If you say that WinZip does the conversion
> automatically -
> great, one question less :-)
>
> >The quogen executables should reside in the $QUO_ROOT/codegen directory.
> Ok.
>
> >In the last couple of months, we tried to get away from generating files in
> directories
> >that are not self-contained. Along these lines, we should generate
> allQuoKernel libraries
> >and dlls in $QUO_ROOT/quo, and change the dsp files that use them
> accordingly. The
> >same holds true for $QUO_ROOT/codegen
> In general, I understand your point, but could you please explain what do
> you mean
> by "self-contained". The small problem I see - currently, for example
> quogen, depends
> only on ace.lib/dll. If in future you will come up with some kind of common
> library and
> will put this library also in own directory, it will be difficult to invoke
> quogen from another
> projects (examples or something else) because required .dll library will not
> be found.
> The only way to handle such a situation is to update PATH variable. If there
> will be more
> then one such common library, it could be slightly inconvenient.
>
> >If you can work in my comments, I'd be happy integrate all your DSP files
> into the QuO release.
> You can download dsp and dsw files with my modifications from:
> http://www.geocities.com/andreynech/Projects/quo_dsps.zip
>
> In this archive:
>
> * Modified project files for quogen - quogen.exe and quogend.exe are
> generated
> in $QUO_ROOT/codegen.
>
> * Modified project files for quoKernel - libQuoKernel.dll and
> libQuoKerneld.dll with corresponding
> .lib files are generated into $QUO_ROOT/quo directory.
>
> * There are also project files for simple/adapter example which illustrate
> the problem I
> mentioned in my previous mail.
>
>
> Thank you.
>
> Andrey.
>
> --
> [To unsubscribe to this list send an email to "majdart@..."
> with the following text in the BODY of the message "unsubscribe quo-users"]
>
> --
> [To unsubscribe to this list send an email to "majdart@..."
> with the following text in the BODY of the message "unsubscribe quo-users"]

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#14 From: Nechypurenko Andrey <Andrey.Nechypurenko@...>
Date: Mon Nov 26, 2001 3:18 pm
Subject: quoCore MSVC project files
Andrey.Nechypurenko@...
Send Email Send Email
 
Hi, Michael.

I just want to ask - did you have a chance to take a look at
project files I sent? Is it correct from your point of view? Or
should I change something else?


Thank you.
Andrey.

-----Original Message-----
From: Nechypurenko Andrey
Sent: Tuesday, November 13, 2001 9:12 PM
To: 'quo-users@...'
Cc: 'Michael Atighetchi'
Subject: RE: [quo-users] quoCore compilation problems on Win32


Hi, Michael.


>How did you unzip the src.tgz file? Winzip does the conversion
automatically.
I am using WindowsCommander which has built-in support for many archive
types including tgz. If you say that WinZip does the conversion
automatically -
great, one question less :-)

>The quogen executables should reside in the $QUO_ROOT/codegen directory.
Ok.

>In the last couple of months, we tried to get away from generating files in
directories
>that are not self-contained. Along these lines, we should generate
allQuoKernel libraries
>and dlls in $QUO_ROOT/quo, and change the dsp files that use them
accordingly. The
>same holds true for $QUO_ROOT/codegen
In general, I understand your point, but could you please explain what do
you mean
by "self-contained". The small problem I see - currently, for example
quogen, depends
only on ace.lib/dll. If in future you will come up with some kind of common
library and
will put this library also in own directory, it will be difficult to invoke
quogen from another
projects (examples or something else) because required .dll library will not
be found.
The only way to handle such a situation is to update PATH variable. If there
will be more
then one such common library, it could be slightly inconvenient.

>If you can work in my comments, I'd be happy integrate all your DSP files
into the QuO release.
You can download dsp and dsw files with my modifications from:
http://www.geocities.com/andreynech/Projects/quo_dsps.zip

In this archive:

* Modified project files for quogen - quogen.exe and quogend.exe are
generated
in $QUO_ROOT/codegen.

* Modified project files for quoKernel - libQuoKernel.dll and
libQuoKerneld.dll with corresponding
.lib files are generated into $QUO_ROOT/quo directory.

* There are also project files for simple/adapter example which illustrate
the problem I
mentioned in my previous mail.


Thank you.

Andrey.

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#13 From: Nechypurenko Andrey <Andrey.Nechypurenko@...>
Date: Tue Nov 13, 2001 8:11 pm
Subject: RE: quoCore compilation problems on Win32
Andrey.Nechypurenko@...
Send Email Send Email
 
Hi, Michael.


>How did you unzip the src.tgz file? Winzip does the conversion
automatically.
I am using WindowsCommander which has built-in support for many archive
types including tgz. If you say that WinZip does the conversion
automatically -
great, one question less :-)

>The quogen executables should reside in the $QUO_ROOT/codegen directory.
Ok.

>In the last couple of months, we tried to get away from generating files in
directories
>that are not self-contained. Along these lines, we should generate
allQuoKernel libraries
>and dlls in $QUO_ROOT/quo, and change the dsp files that use them
accordingly. The
>same holds true for $QUO_ROOT/codegen
In general, I understand your point, but could you please explain what do
you mean
by "self-contained". The small problem I see - currently, for example
quogen, depends
only on ace.lib/dll. If in future you will come up with some kind of common
library and
will put this library also in own directory, it will be difficult to invoke
quogen from another
projects (examples or something else) because required .dll library will not
be found.
The only way to handle such a situation is to update PATH variable. If there
will be more
then one such common library, it could be slightly inconvenient.

>If you can work in my comments, I'd be happy integrate all your DSP files
into the QuO release.
You can download dsp and dsw files with my modifications from:
http://www.geocities.com/andreynech/Projects/quo_dsps.zip

In this archive:

* Modified project files for quogen - quogen.exe and quogend.exe are
generated
in $QUO_ROOT/codegen.

* Modified project files for quoKernel - libQuoKernel.dll and
libQuoKerneld.dll with corresponding
.lib files are generated into $QUO_ROOT/quo directory.

* There are also project files for simple/adapter example which illustrate
the problem I
mentioned in my previous mail.


Thank you.

Andrey.

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#12 From: Michael Atighetchi <matighet@...>
Date: Fri Nov 9, 2001 9:17 pm
Subject: Re: quoCore compilation problems on Win32
matighet@...
Send Email Send Email
 
Hey Andrey,

thanks for using the PRF!

> For the first, I would like to say that now I am able to
> run bette example on Linux - thank you for your help.
>
thats good news.

>     SYNOPSIS:
>
> The first problem was the following - MSVC does not recognize neither
> .dsp nor .dsw files as a project/workspace files at all. The reason -
> these files are distributed as "unix-style" text files, but MSVC expect
> "dos-style" (CR/LF) text files. After convertion, MSVC loads projects
> correctly.
>
How did you unzip the src.tgz file? Winzip does the conversion automatically.


> The reason - there was no
> $(TAO_ROOT)\tao\PortableServer\TAO_PortableServerd.lib
> included. I fixed it and comilation complete successfully.
>
Yes: This has changed between TAO versions, and is missing in the projcet
settings.
We don't really do regression testing on NT, so this slipped through.
It's fixed now.


> Also, I found that Release version is not configured at all and I made
> appropriate changes to compile Release version of libQuoKernel.dll also.
>
You can send me the dsp files and I put them into our cvs repository.


>
> $QOU_ROOT/examples/simple/adapter does not compiles:
>
> --------------------Configuration: QDL - Win32 Debug--------------------
> Generating code for property file SwitchedCounter.prp
> ERROR: `middleware' unspecified
> legal values: corba, rmi or none
> ERROR checking merged data sources - quogen exiting.
> Error spawning c:\winnt\system32\cmd.exe
>
> server.exe - 2 error(s), 0 warning(s)
>
> I added --middleware=corba to the quogen invocation command line and after
> that got the following problem:
>
> --------------------Configuration: QDL - Win32 Debug--------------------
> Generating code for property file SwitchedCounter.prp
> quogen: cannot open temp file
> C:\DOCUME~1\NECHYP~1\LOCALS~1\Temp\\\idlf_a016481.cc for writing
> quogen: cannot open temp file
> C:\DOCUME~1\NECHYP~1\LOCALS~1\Temp\\\idlf_a016482.cc for writing
> quogen: cannot open temp file
> C:\DOCUME~1\NECHYP~1\LOCALS~1\Temp\\\idlf_a016483.cc for writing
> cdl parse error: line = 8 , parse error
> error : unexpected identifier quo::ValueSC
> If quo::ValueSC is an IDL type, make sure the corresponding IDL file got
> parsed
> encountered 1 error(s) while parsing SwitchContract.cdl
> ERROR parsing SwitchContract.cdl - quogen exiting.
> Error spawning c:\winnt\system32\cmd.exe
>
> server.exe - 3 error(s), 0 warning(s)
>
> I have no idea why it happens because the mentioned directory is exists and
> write enabled and there is enough free space...
>
I'll look into this


>
> ================================================
> Also I would like to make the following proposals
> concerning project settings:
>
> 1. quogen:
>    using .shobj_d and .shobj_r for intermediate files (Degug and Release)
That's fine

>    Name quogen debug version as quogend.exe and let them be generated to
>    $QUO_ROOT/bin
>
The quogen executables should reside in the $QUO_ROOT/codegen directory.
Other than that, your suggestions sound great.

> 2. quokernel_dll:
>    for debug version use libQuoKerneld.dll and for release libQuoKernel.dll
>    put intermediate files to .shobj_d and .shobj_r
>    and output (.lib) to ../lib instead of ./
>    generate dll files to ../bin
>
In the last couple of months, we tried to get away from generating files in
directories that are not self-contained. Along these lines, we should generate
all QuoKernel libraries and dlls in $QUO_ROOT/quo, and change the dsp files that
use them accordingly. The same holds true for $QUO_ROOT/codegen



> ================================================
> Questions:
>
> I am not quite understand what is $QUO_ROOT/codegen/contract/contract.dsw
> and corresponding .dsp files for. I've got impression that this files are
> really outdated. Could you please explain for what these files are used.
>
These are junk files that somehow made it into the release.
I just removed them.

> Please, let me know what do you think about proposed changes. I have project
>
> files with all mentioned changes and if you would like to take a look on
> them,
> I will be glad to send them to you.
>

If you can work in my comments, I'd be happy integrate all your DSP files into
the QuO release.

Michael


--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#11 From: Nechypurenko Andrey <Andrey.Nechypurenko@...>
Date: Fri Nov 9, 2001 1:03 pm
Subject: quoCore compilation problems on Win32
Andrey.Nechypurenko@...
Send Email Send Email
 
Hi, Michael.

For the first, I would like to say that now I am able to
run bette example on Linux - thank you for your help.


I was trying to compile quoCore on Win32 and got some
problems:

     QUO VERSION: 3.0.8

     HOST MACHINE and OPERATING SYSTEM:
         Win2K SP1.

     TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
     COMPILER NAME AND VERSION (AND PATCHLEVEL):
         MSVC++ 6.0 SP5

     AREA/CLASS/EXAMPLE AFFECTED:
[What example failed?  What module failed to compile?]
quokernel_dll

     DOES THE PROBLEM AFFECT:
         COMPILATION?
             If so, what does your shell environment look like ?
TAO is installed and ACE_ROOT and TAO_ROOT are set correctly.
QUO_ROOT is also defined

         LINKING?
             On Unix systems, did you run make realclean first?
         EXECUTION?
         OTHER (please specify)?
[Please indicate whether QUO, your application, or both are affected.]

     SYNOPSIS:

The first problem was the following - MSVC does not recognize neither
.dsp nor .dsw files as a project/workspace files at all. The reason -
these files are distributed as "unix-style" text files, but MSVC expect
"dos-style" (CR/LF) text files. After convertion, MSVC loads projects
correctly.

After that I have got a lot (about 300) undefined symbols when linking
quokernel_dll:

Linking...
    Creating library ./libQuoKernel.lib and object ./libQuoKernel.exp
ValueSCImpl.obj : error LNK2001: unresolved external symbol
"__declspec(dllimport) public: static int __cdecl
TAO_POA_Initializer::init(void)" (__imp_?init@TAO_POA_Initializer@@SAHXZ)
SysCondImpl.obj : error LNK2001: unresolved external symbol
"__declspec(dllimport) public: static int __cdecl
TAO_POA_Initializer::init(void)" (__imp_?init@TAO_POA_Initializer@@SAHXZ)
TimeSCImpl.obj : error LNK2001: unresolved external symbol
"__declspec(dllimport) public: static int __cdecl
TAO_POA_Initializer::init(void)" (__imp_?init@TAO_POA_Initializer@@SAHXZ)
TransitionCode.obj : error LNK2001: unresolved external symbol
"__declspec(dllimport) public: static int __cdecl
TAO_POA_Initializer::init(void)" (__imp_?init@TAO_POA_Initializer@@SAHXZ)
ValueSCCallbackImpl.obj : error LNK2001: unresolved external symbol
"__declspec(dllimport) public: static int __cdecl
TAO_POA_Initializer::init(void)" (__imp_?init@TAO_POA_Initializer@@SAHXZ)
quoS.obj : error LNK2001: unresolved external symbol "__declspec(dllimport)
public: static int __cdecl TAO_POA_Initializer::init(void)"
(__imp_?init@TAO_POA_Initializer@@SAHXZ)
...

The reason - there was no
$(TAO_ROOT)\tao\PortableServer\TAO_PortableServerd.lib
included. I fixed it and comilation complete successfully.

Also, I found that Release version is not configured at all and I made
appropriate changes to compile Release version of libQuoKernel.dll also.

---------------------------------------------

$QOU_ROOT/examples/simple/adapter does not compiles:

--------------------Configuration: QDL - Win32 Debug--------------------
Generating code for property file SwitchedCounter.prp
ERROR: `middleware' unspecified
legal values: corba, rmi or none
ERROR checking merged data sources - quogen exiting.
Error spawning c:\winnt\system32\cmd.exe

server.exe - 2 error(s), 0 warning(s)

I added --middleware=corba to the quogen invocation command line and after
that got the following problem:

--------------------Configuration: QDL - Win32 Debug--------------------
Generating code for property file SwitchedCounter.prp
quogen: cannot open temp file
C:\DOCUME~1\NECHYP~1\LOCALS~1\Temp\\\idlf_a016481.cc for writing
quogen: cannot open temp file
C:\DOCUME~1\NECHYP~1\LOCALS~1\Temp\\\idlf_a016482.cc for writing
quogen: cannot open temp file
C:\DOCUME~1\NECHYP~1\LOCALS~1\Temp\\\idlf_a016483.cc for writing
cdl parse error: line = 8 , parse error
error : unexpected identifier quo::ValueSC
If quo::ValueSC is an IDL type, make sure the corresponding IDL file got
parsed
encountered 1 error(s) while parsing SwitchContract.cdl
ERROR parsing SwitchContract.cdl - quogen exiting.
Error spawning c:\winnt\system32\cmd.exe

server.exe - 3 error(s), 0 warning(s)

I have no idea why it happens because the mentioned directory is exists and
write enabled and there is enough free space...


================================================
Also I would like to make the following proposals
concerning project settings:

1. quogen:
    using .shobj_d and .shobj_r for intermediate files (Degug and Release)
    Name quogen debug version as quogend.exe and let them be generated to
    $QUO_ROOT/bin

    this change broke (at least) $QOU_ROOT/examples/simple/adapter project
    compilation because quogen.exe was not found in codegen/ directory,
    but this project does not compiles anyway and needs changes in
    project settings (see above) so I am also change quogen invocation
    path to bin.

    Release version of quogen was not configured. I have made required
    changes

2. quokernel_dll:
    for debug version use libQuoKerneld.dll and for release libQuoKernel.dll
    put intermediate files to .shobj_d and .shobj_r
    and output (.lib) to ../lib instead of ./
    generate dll files to ../bin

================================================
Questions:

I am not quite understand what is $QUO_ROOT/codegen/contract/contract.dsw
and corresponding .dsp files for. I've got impression that this files are
really outdated. Could you please explain for what these files are used.


Please, let me know what do you think about proposed changes. I have project

files with all mentioned changes and if you would like to take a look on
them,
I will be glad to send them to you.



Thank you.

Andrey Nechypurenko.

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#10 From: Michael Atighetchi <matighet@...>
Date: Tue Nov 6, 2001 4:52 pm
Subject: Look at $QUO_ROOT/examples/bette
matighet@...
Send Email Send Email
 
Hey Andrey,

good to hear that you were able to compile.

> fails. Obviously, the first idea which comes to my mind is to simulate
> camera with
> mpeg file. I do not understand this example good enough yet to make
> suggestions, but what do you think about the possibility to use JMF (Java
> Media
> Framework) instead of camE library? I think in such a case it would be
> easier
> to simulate the camera just by playing existing movie as well as working
> with real
> devices without JNI.
>
Using JMF is certainly a good suggestion. However, I don't know how to capture
jpg
images from a USB camera yet... I'll have to dig into this.
Also: This example is NOT about sending mpeg movies. The client simply requests
jpg images from the camera and displays them.

Take a look at $QUO_ROOT/examples/bette, which is pretty much the same
application without a camera and the Broker. The server serves jpf files of
Betty Davis.

Let me know how it goes.

Michael



> Once again thank you for your help.
>
> Andrey.
>
>
> -----Original Message-----
> From: Michael Atighetchi [mailto:matighet@...]
> Sent: Monday, November 05, 2001 5:40 PM
> To: Nechypurenko Andrey
> Cc: 'quo-users@...'
> Subject: Re: [quo-users] quoCore example compilation problem
>
>
> You can get the JavaCam class by downloading and compiling the 3rdparty
> software camE from
>
> http://www.dist-systems.bbn.com/tech/QuO/release/latest/3rdparty/camE-1.2_ja
> va.src.tgz.
>
> Do a
>
>  make jcam.jar
>
> to generate the JAVA jar file for camE. In addition, follow the instruction
> in quo/examples/brokered_imgsvc (mainly export CAME_HOME to the place where
> you untared the camE tarball).
>
> Let me know how it goes...
>
> Michael
>
>
>
>
>
>
>
> On Mon, Nov 05, 2001 at 05:32:41PM +0100, Nechypurenko Andrey wrote:
> > Hi, Michael.
> >
> > Thank you for the answer to my previous e-mail.
> >
> > Now I am trying to compile v. 3.0.8 and got the following
> > problem with example compilation:
> >
> >     QUO VERSION: 3.0.8
> >
> >     HOST MACHINE and OPERATING SYSTEM:
> >         SuSE Linux 7.2 (i386) - Kernel 2.4.4-4GB (18).
> >
> >     TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
> >     COMPILER NAME AND VERSION (AND PATCHLEVEL):
> >         gcc version 2.95.3 20010315 (SuSE)
> >
> >     AREA/CLASS/EXAMPLE AFFECTED:
> > [What example failed?  What module failed to compile?]
> > $QUO_ROOT/examples/brokered_imgsvc
> > com/bbn/quo/examples/imageBroker/PublishWrapper.java
> >
> >     DOES THE PROBLEM AFFECT:
> >         COMPILATION?
> >             If so, what does your shell environment look like ?
> > TAO is installed and ACE_ROOT and TAO_ROOT are set correctly.
> > QUO_ROOT is also defined
> > I did
> > :~/QuO/3.0.7/src/quo > source $QUO_ROOT/scripts/environment/quoenv.sh
> > $QUO_ROOT
> >
> >
> >         LINKING?
> >             On Unix systems, did you run make realclean first?
> >         EXECUTION?
> >         OTHER (please specify)?
> > [Please indicate whether QUO, your application, or both are affected.]
> >
> >     SYNOPSIS:
> > /home/andreyn/quo/bin/jacoc -d
> > /home/andreyn/quo/examples/brokered_imgsvc/.classes
> > com/bbn/quo/examples/imageBroker/*.java
> > com/bbn/quo/examples/imageBroker/PublishWrapper.java:14: cannot resolve
> > symbol
> > symbol  : class JavaCam
> > location: package jcam
> > import com.bbn.jcam.JavaCam;
> >                     ^
> > com/bbn/quo/examples/imageBroker/PublishWrapper.java:88: cannot resolve
> > symbol
> > symbol  : variable JavaCam
> > location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
> >             JavaCam.loadLibrary();
> >             ^
> > com/bbn/quo/examples/imageBroker/PublishWrapper.java:89: cannot resolve
> > symbol
> > symbol  : variable JavaCam
> > location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
> >             JavaCam.initCamera(args);
> >             ^
> > com/bbn/quo/examples/imageBroker/PublishWrapper.java:95: cannot resolve
> > symbol
> > symbol  : variable JavaCam
> > location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
> >                     JavaCam.grabImage();
> >                     ^
> >
> >     DESCRIPTION:
> > JavaCam.java does not exists. There is no com/bbn/jcam directory also.
> >
> >
> >
> > Thank you.
> >
> > Andrey Nechypurenko
> > __________________________________________
> > Siemens AG, Corporate Technology (CT SE2)
> > Otto-Hahn-Ring 6, 81730 Munich, Germany
> > Phone: +49 89 636-54799
> > Fax: +49 89 636-45450
> > Email: andrey.nechypurenko@...
> >
> > --
> > [To unsubscribe to this list send an email to "majdart@..."
> > with the following text in the BODY of the message "unsubscribe
> quo-users"]
>
> --
> Michael Atighetchi   matighet@...   BBN Technologies
>
> --
> [To unsubscribe to this list send an email to "majdart@..."
> with the following text in the BODY of the message "unsubscribe quo-users"]

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#9 From: Nechypurenko Andrey <Andrey.Nechypurenko@...>
Date: Tue Nov 6, 2001 3:58 pm
Subject: RE: quoCore example compilation problem
Andrey.Nechypurenko@...
Send Email Send Email
 
Hi, Michael.

Thank you for the help. Now example compiles completelly and even
starts working (I am able to run ImageBrokerImpl and bin/server-webcam.sh)
but
I am currently has no Linux computer with camera that is why
server-webcam.sh
fails. Obviously, the first idea which comes to my mind is to simulate
camera with
mpeg file. I do not understand this example good enough yet to make
suggestions, but what do you think about the possibility to use JMF (Java
Media
Framework) instead of camE library? I think in such a case it would be
easier
to simulate the camera just by playing existing movie as well as working
with real
devices without JNI.

Once again thank you for your help.

Andrey.


-----Original Message-----
From: Michael Atighetchi [mailto:matighet@...]
Sent: Monday, November 05, 2001 5:40 PM
To: Nechypurenko Andrey
Cc: 'quo-users@...'
Subject: Re: [quo-users] quoCore example compilation problem


You can get the JavaCam class by downloading and compiling the 3rdparty
software camE from

http://www.dist-systems.bbn.com/tech/QuO/release/latest/3rdparty/camE-1.2_ja
va.src.tgz.

Do a

  make jcam.jar

to generate the JAVA jar file for camE. In addition, follow the instruction
in quo/examples/brokered_imgsvc (mainly export CAME_HOME to the place where
you untared the camE tarball).

Let me know how it goes...

Michael







On Mon, Nov 05, 2001 at 05:32:41PM +0100, Nechypurenko Andrey wrote:
> Hi, Michael.
>
> Thank you for the answer to my previous e-mail.
>
> Now I am trying to compile v. 3.0.8 and got the following
> problem with example compilation:
>
>     QUO VERSION: 3.0.8
>
>     HOST MACHINE and OPERATING SYSTEM:
>         SuSE Linux 7.2 (i386) - Kernel 2.4.4-4GB (18).
>
>     TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
>     COMPILER NAME AND VERSION (AND PATCHLEVEL):
>         gcc version 2.95.3 20010315 (SuSE)
>
>     AREA/CLASS/EXAMPLE AFFECTED:
> [What example failed?  What module failed to compile?]
> $QUO_ROOT/examples/brokered_imgsvc
> com/bbn/quo/examples/imageBroker/PublishWrapper.java
>
>     DOES THE PROBLEM AFFECT:
>         COMPILATION?
>             If so, what does your shell environment look like ?
> TAO is installed and ACE_ROOT and TAO_ROOT are set correctly.
> QUO_ROOT is also defined
> I did
> :~/QuO/3.0.7/src/quo > source $QUO_ROOT/scripts/environment/quoenv.sh
> $QUO_ROOT
>
>
>         LINKING?
>             On Unix systems, did you run make realclean first?
>         EXECUTION?
>         OTHER (please specify)?
> [Please indicate whether QUO, your application, or both are affected.]
>
>     SYNOPSIS:
> /home/andreyn/quo/bin/jacoc -d
> /home/andreyn/quo/examples/brokered_imgsvc/.classes
> com/bbn/quo/examples/imageBroker/*.java
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:14: cannot resolve
> symbol
> symbol  : class JavaCam
> location: package jcam
> import com.bbn.jcam.JavaCam;
>                     ^
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:88: cannot resolve
> symbol
> symbol  : variable JavaCam
> location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
>             JavaCam.loadLibrary();
>             ^
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:89: cannot resolve
> symbol
> symbol  : variable JavaCam
> location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
>             JavaCam.initCamera(args);
>             ^
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:95: cannot resolve
> symbol
> symbol  : variable JavaCam
> location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
>                     JavaCam.grabImage();
>                     ^
>
>     DESCRIPTION:
> JavaCam.java does not exists. There is no com/bbn/jcam directory also.
>
>
>
> Thank you.
>
> Andrey Nechypurenko
> __________________________________________
> Siemens AG, Corporate Technology (CT SE2)
> Otto-Hahn-Ring 6, 81730 Munich, Germany
> Phone: +49 89 636-54799
> Fax: +49 89 636-45450
> Email: andrey.nechypurenko@...
>
> --
> [To unsubscribe to this list send an email to "majdart@..."
> with the following text in the BODY of the message "unsubscribe
quo-users"]

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#8 From: Michael Atighetchi <matighet@...>
Date: Mon Nov 5, 2001 4:39 pm
Subject: Re: quoCore example compilation problem
matighet@...
Send Email Send Email
 
You can get the JavaCam class by downloading and compiling the 3rdparty software
camE from
  
http://www.dist-systems.bbn.com/tech/QuO/release/latest/3rdparty/camE-1.2_java.s\
rc.tgz.

Do a

  make jcam.jar

to generate the JAVA jar file for camE. In addition, follow the instruction in
quo/examples/brokered_imgsvc (mainly export CAME_HOME to the place where you
untared the camE tarball).

Let me know how it goes...

Michael







On Mon, Nov 05, 2001 at 05:32:41PM +0100, Nechypurenko Andrey wrote:
> Hi, Michael.
>
> Thank you for the answer to my previous e-mail.
>
> Now I am trying to compile v. 3.0.8 and got the following
> problem with example compilation:
>
>     QUO VERSION: 3.0.8
>
>     HOST MACHINE and OPERATING SYSTEM:
>         SuSE Linux 7.2 (i386) - Kernel 2.4.4-4GB (18).
>
>     TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
>     COMPILER NAME AND VERSION (AND PATCHLEVEL):
>         gcc version 2.95.3 20010315 (SuSE)
>
>     AREA/CLASS/EXAMPLE AFFECTED:
> [What example failed?  What module failed to compile?]
> $QUO_ROOT/examples/brokered_imgsvc
> com/bbn/quo/examples/imageBroker/PublishWrapper.java
>
>     DOES THE PROBLEM AFFECT:
>         COMPILATION?
>             If so, what does your shell environment look like ?
> TAO is installed and ACE_ROOT and TAO_ROOT are set correctly.
> QUO_ROOT is also defined
> I did
> :~/QuO/3.0.7/src/quo > source $QUO_ROOT/scripts/environment/quoenv.sh
> $QUO_ROOT
>
>
>         LINKING?
>             On Unix systems, did you run make realclean first?
>         EXECUTION?
>         OTHER (please specify)?
> [Please indicate whether QUO, your application, or both are affected.]
>
>     SYNOPSIS:
> /home/andreyn/quo/bin/jacoc -d
> /home/andreyn/quo/examples/brokered_imgsvc/.classes
> com/bbn/quo/examples/imageBroker/*.java
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:14: cannot resolve
> symbol
> symbol  : class JavaCam
> location: package jcam
> import com.bbn.jcam.JavaCam;
>                     ^
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:88: cannot resolve
> symbol
> symbol  : variable JavaCam
> location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
>             JavaCam.loadLibrary();
>             ^
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:89: cannot resolve
> symbol
> symbol  : variable JavaCam
> location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
>             JavaCam.initCamera(args);
>             ^
> com/bbn/quo/examples/imageBroker/PublishWrapper.java:95: cannot resolve
> symbol
> symbol  : variable JavaCam
> location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
>                     JavaCam.grabImage();
>                     ^
>
>     DESCRIPTION:
> JavaCam.java does not exists. There is no com/bbn/jcam directory also.
>
>
>
> Thank you.
>
> Andrey Nechypurenko
> __________________________________________
> Siemens AG, Corporate Technology (CT SE2)
> Otto-Hahn-Ring 6, 81730 Munich, Germany
> Phone: +49 89 636-54799
> Fax: +49 89 636-45450
> Email: andrey.nechypurenko@...
>
> --
> [To unsubscribe to this list send an email to "majdart@..."
> with the following text in the BODY of the message "unsubscribe quo-users"]

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#7 From: Nechypurenko Andrey <Andrey.Nechypurenko@...>
Date: Mon Nov 5, 2001 4:32 pm
Subject: quoCore example compilation problem
Andrey.Nechypurenko@...
Send Email Send Email
 
Hi, Michael.

Thank you for the answer to my previous e-mail.

Now I am trying to compile v. 3.0.8 and got the following
problem with example compilation:

     QUO VERSION: 3.0.8

     HOST MACHINE and OPERATING SYSTEM:
         SuSE Linux 7.2 (i386) - Kernel 2.4.4-4GB (18).

     TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
     COMPILER NAME AND VERSION (AND PATCHLEVEL):
         gcc version 2.95.3 20010315 (SuSE)

     AREA/CLASS/EXAMPLE AFFECTED:
[What example failed?  What module failed to compile?]
$QUO_ROOT/examples/brokered_imgsvc
com/bbn/quo/examples/imageBroker/PublishWrapper.java

     DOES THE PROBLEM AFFECT:
         COMPILATION?
             If so, what does your shell environment look like ?
TAO is installed and ACE_ROOT and TAO_ROOT are set correctly.
QUO_ROOT is also defined
I did
:~/QuO/3.0.7/src/quo > source $QUO_ROOT/scripts/environment/quoenv.sh
$QUO_ROOT


         LINKING?
             On Unix systems, did you run make realclean first?
         EXECUTION?
         OTHER (please specify)?
[Please indicate whether QUO, your application, or both are affected.]

     SYNOPSIS:
/home/andreyn/quo/bin/jacoc -d
/home/andreyn/quo/examples/brokered_imgsvc/.classes
com/bbn/quo/examples/imageBroker/*.java
com/bbn/quo/examples/imageBroker/PublishWrapper.java:14: cannot resolve
symbol
symbol  : class JavaCam
location: package jcam
import com.bbn.jcam.JavaCam;
                     ^
com/bbn/quo/examples/imageBroker/PublishWrapper.java:88: cannot resolve
symbol
symbol  : variable JavaCam
location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
             JavaCam.loadLibrary();
             ^
com/bbn/quo/examples/imageBroker/PublishWrapper.java:89: cannot resolve
symbol
symbol  : variable JavaCam
location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
             JavaCam.initCamera(args);
             ^
com/bbn/quo/examples/imageBroker/PublishWrapper.java:95: cannot resolve
symbol
symbol  : variable JavaCam
location: class com.bbn.quo.examples.imageBroker.PublishWrapper.Grabber
                     JavaCam.grabImage();
                     ^

     DESCRIPTION:
JavaCam.java does not exists. There is no com/bbn/jcam directory also.



Thank you.

Andrey Nechypurenko
__________________________________________
Siemens AG, Corporate Technology (CT SE2)
Otto-Hahn-Ring 6, 81730 Munich, Germany
Phone: +49 89 636-54799
Fax: +49 89 636-45450
Email: andrey.nechypurenko@...

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#6 From: Michael Atighetchi <matighet@...>
Date: Wed Oct 31, 2001 11:56 pm
Subject: QuO 3.0.8 released
matighet@...
Send Email Send Email
 
QuO 3.0.8 got released today.

You can download it at
http://www.dist-systems.bbn.com/tech/QuO/release/latest/index.html


Some of the changes / new features include
------------------------------------------

- added new example brokered_imgsvc: It is a version of the famous bette example
   hookup up to a webcam.
   [Michael, Oct 23 01]

- added support for explicitly naming adapter class with --adapter.
   Also, if neither --adapter nor --businessqosket are present, the name of
   the adapter class will be the value of --business appended by "Adapter".
   [Michael, Oct 23 01]

- Various fixes and improvements to the JacORB version of OODTE.
   Status:
   - every request and reply is now digitally signed and verified;
   - sequence numbers to detect replay have been added but are currently
     disabled because nested invocations are not handled correctly;
   - exceptional replies are not handled correctly;
   - the OODTE test suite is improved to test multiple clients invoking
     concurrently on multiple servers, using a wider variety of test methods;
   - the OODTE interceptors now are not installed if both .ini files
     they need are absent (this allows OODTE to be switched on or off
     depending on .ini files rather than on command-line switches);
   - Visibroker version of OODTE is still broken.
   [Franklin, Oct 23]

- added support for qosket generation without contracts. This works in
combination
   with the --delegate flag to set the name of the generated delegate class.
   This should be useful to clean up the UAV code in terms of eliminating dummy
contracts.
   [Michael, Oct 10 01]

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#5 From: Michael Atighetchi <matighet@...>
Date: Wed Oct 31, 2001 6:33 pm
Subject: Re: quoCore source compilation problem
matighet@...
Send Email Send Email
 
On Wed, Oct 31, 2001 at 04:27:22PM +0100, Nechypurenko Andrey wrote:
> Hi, QuO Users & Developers.
>
>
> There are two reasons I am writing: the fist
> is just to check that I am correctly subscribed
> to the mail list (I did not receive any postings yet)
I believe you are correctly subscribed.


> and the second is the question about quo sources
> compilation. Because I am also reading ace&tao-users
> maillist I even could not think about writing "I have a
> problem" without PRF :-)
>
Thanks for using the PRF...

>
>     QUO VERSION: 3.0.7
>
>     SYNOPSIS:
> :~/QuO/3.0.7/src/quo > make quoCore
> /home/andreyn/QuO/3.0.7/src/quo/scripts/tarspecs/quoCore.build
> /home/andreyn/QuO
> /3.0.7/src/quo/..
> make: /home/andreyn/QuO/3.0.7/src/quo/scripts/tarspecs/quoCore.build:
> Command no
> t found
> make: *** [quoCore] Error 127
>
>     DESCRIPTION:
> There is no quoCore.build file anywhere...
>

Your hitting a bug in the QuO source release for version 3.0.7: The script
quoCore.build is simply missing from the source release.
We are currently in the process of putting out version 3.0.8, which has fixed
that problem. It should be released either today or tomorrow.

Michael


>
> Thank you.
>
> Andrey Nechypurenko
> __________________________________________
> Siemens AG, Corporate Technology (CT SE2)
> Otto-Hahn-Ring 6, 81730 Munich, Germany
> Phone: +49 89 636-54799
> Fax: +49 89 636-45450
> Email: andrey.nechypurenko@...
>
> --
> [To unsubscribe to this list send an email to "majdart@..."
> with the following text in the BODY of the message "unsubscribe quo-users"]

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#4 From: Nechypurenko Andrey <Andrey.Nechypurenko@...>
Date: Wed Oct 31, 2001 3:27 pm
Subject: quoCore source compilation problem
Andrey.Nechypurenko@...
Send Email Send Email
 
Hi, QuO Users & Developers.


There are two reasons I am writing: the fist
is just to check that I am correctly subscribed
to the mail list (I did not receive any postings yet)
and the second is the question about quo sources
compilation. Because I am also reading ace&tao-users
maillist I even could not think about writing "I have a
problem" without PRF :-)


     QUO VERSION: 3.0.7

     HOST MACHINE and OPERATING SYSTEM:
         SuSE Linux 7.2 (i386) - Kernel 2.4.4-4GB (18).

     TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
     COMPILER NAME AND VERSION (AND PATCHLEVEL):
         gcc version 2.95.3 20010315 (SuSE)

     AREA/CLASS/EXAMPLE AFFECTED:
[What example failed?  What module failed to compile?]
I could not compile anything

     DOES THE PROBLEM AFFECT:
         COMPILATION?
             If so, what does your shell environment look like ?
TAO is installed and ACE_ROOT and TAO_ROOT are set correctly.
QUO_ROOT is also defined
I did
:~/QuO/3.0.7/src/quo > source $QUO_ROOT/scripts/environment/quoenv.sh
$QUO_ROOT


         LINKING?
             On Unix systems, did you run make realclean first?
         EXECUTION?
         OTHER (please specify)?
[Please indicate whether QUO, your application, or both are affected.]

     SYNOPSIS:
:~/QuO/3.0.7/src/quo > make quoCore
/home/andreyn/QuO/3.0.7/src/quo/scripts/tarspecs/quoCore.build
/home/andreyn/QuO
/3.0.7/src/quo/..
make: /home/andreyn/QuO/3.0.7/src/quo/scripts/tarspecs/quoCore.build:
Command no
t found
make: *** [quoCore] Error 127

     DESCRIPTION:
There is no quoCore.build file anywhere...

This is my first attempt to build QuO, so could you please suggest how to
proceed.


Thank you.

Andrey Nechypurenko
__________________________________________
Siemens AG, Corporate Technology (CT SE2)
Otto-Hahn-Ring 6, 81730 Munich, Germany
Phone: +49 89 636-54799
Fax: +49 89 636-45450
Email: andrey.nechypurenko@...

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#3 From: Michael Atighetchi <qualityobjects@...>
Date: Wed Jun 20, 2001 10:28 pm
Subject: test for yahoogroups
qualityobjects@...
Send Email Send Email
 
please disregard ... this email is just a test.

Michael

--
Michael Atighetchi   matighet@...   BBN Technologies

--
[To unsubscribe to this list send an email to "majdart@..."
with the following text in the BODY of the message "unsubscribe quo-users"]

#2 From: Michael Atighetchi <matighet@...>
Date: Wed Jun 20, 2001 10:25 pm
Subject: testle
matighet@...
Send Email Send Email
 
testle

--
Michael Atighetchi   matighet@...   BBN Technologies

Messages 1 - 31 of 35   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help