Can a persisted proxy be reused after IceGrid restart?

in Help Center
If I persist a proxy by doing _ice_toString(), then IceGrid restarted, can that proxy still be used?
I'm guessing the answer is no unless IceGrid uses the same endpoint address for all adapters after it restarted?
Thanks
Budyanto
I'm guessing the answer is no unless IceGrid uses the same endpoint address for all adapters after it restarted?
Thanks
Budyanto
0
Comments
I'm assuming you're referring to indirect proxies here. If you convert an indirect proxy to a string, the resulting string will retain its indirect nature and have one of the following forms:
- objectid (for a well-known object)
- objectid @ adapterid
- objectid @ replicaid
Consequently, these proxies will continue to work regardless of how the IceGrid endpoint configurations change. Remember that, in order to resolve indirect proxies, a client only needs a proxy for the locator; as long as you update the client's locator proxy whenever the registry's client endpoints change, everything will work correctly.Regards,
Mark
Thanks