Hi i have an IceBox file descriptor like this
Code:
<icebox id="FileService"
exe="/opt/Ice-3.0.1/bin/icebox"
activation="on-demand">
<service name="Files" entry="Files:create">
<adapter name="${service}" endpoints="tcp">
<object
identity="FileServer/FileServer"
type="::Oz::Files::FileServer"/>
</adapter>
</service>
</icebox>
how my service can retrieve the value of objects add to adapter when it start?
what i try to do is retrieve the id "FileServer/FileServer" and if object not exist create it. is this posible or must i add and extra property and use it inside <object/> and retrive via communicator->getProperty()?
thanks