stringToProxy abstract method

ObjectPrx? stringToProxy(
  1. String str
)

Convert a stringified proxy into a proxy. For example, MyCategory/MyObject:tcp -h some_host -p 10000 creates a proxy that refers to the Ice object having an identity with a name "MyObject" and a category "MyCategory", with the server running on host "some_host", port 10000. If the stringified proxy does not parse correctly, the operation throws one of ProxyParseException, EndpointParseException, or IdentityParseException. Refer to the Ice manual for a detailed description of the syntax supported by stringified proxies. @param str The stringified proxy to convert into a proxy. @return The proxy, or nil if str is an empty string. @see #proxyToString

Implementation

ObjectPrx? stringToProxy(String str);