本文整理汇总了Java中com.sun.jndi.rmi.registry.RegistryContext类的典型用法代码示例。如果您正苦于以下问题:Java RegistryContext类的具体用法?Java RegistryContext怎么用?Java RegistryContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RegistryContext类属于com.sun.jndi.rmi.registry包,在下文中一共展示了RegistryContext类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: main
import com.sun.jndi.rmi.registry.RegistryContext; //导入依赖的package包/类
public static void main(String[] args) throws Exception {
Registry registry = TestLibrary.createRegistryOnUnusedPort();
int registryPort = TestLibrary.getRegistryPort(registry);
System.out.println("Connecting to the default Registry...");
// Connect to the default Registry.
// Pass null as the JNDI environment properties (see final argument)
RegistryContext ctx = new RegistryContext(null, registryPort, null);
}
示例2: main
import com.sun.jndi.rmi.registry.RegistryContext; //导入依赖的package包/类
public static void main(String[] args) throws Exception {
Registry registry = TestLibrary.createRegistryOnEphemeralPort();
int registryPort = TestLibrary.getRegistryPort(registry);
System.out.println("Connecting to the default Registry...");
// Connect to the default Registry.
// Pass null as the JNDI environment properties (see final argument)
RegistryContext ctx = new RegistryContext(null, registryPort, null);
}
示例3: getRootURLContext
import com.sun.jndi.rmi.registry.RegistryContext; //导入依赖的package包/类
/**
* Resolves the registry portion of "url" to the corresponding
* RMI registry, and returns the atomic object name as the
* remaining name.
*/
protected ResolveResult getRootURLContext(String url, Hashtable<?,?> env)
throws NamingException
{
if (!url.startsWith("rmi:")) {
throw (new IllegalArgumentException(
"rmiURLContext: name is not an RMI URL: " + url));
}
// Parse the URL.
String host = null;
int port = -1;
String objName = null;
int i = 4; // index into url, following the "rmi:"
if (url.startsWith("//", i)) { // parse "//host:port"
i += 2; // skip past "//"
int slash = url.indexOf('/', i);
if (slash < 0) {
slash = url.length();
}
if (url.startsWith("[", i)) { // at IPv6 literal
int brac = url.indexOf(']', i + 1);
if (brac < 0 || brac > slash) {
throw new IllegalArgumentException(
"rmiURLContext: name is an Invalid URL: " + url);
}
host = url.substring(i, brac + 1); // include brackets
i = brac + 1; // skip past "[...]"
} else { // at host name or IPv4
int colon = url.indexOf(':', i);
int hostEnd = (colon < 0 || colon > slash)
? slash
: colon;
if (i < hostEnd) {
host = url.substring(i, hostEnd);
}
i = hostEnd; // skip past host
}
if ((i + 1 < slash)) {
if ( url.startsWith(":", i)) { // parse port
i++; // skip past ":"
port = Integer.parseInt(url.substring(i, slash));
} else {
throw new IllegalArgumentException(
"rmiURLContext: name is an Invalid URL: " + url);
}
}
i = slash;
}
if ("".equals(host)) {
host = null;
}
if (url.startsWith("/", i)) { // skip "/" before object name
i++;
}
if (i < url.length()) {
objName = url.substring(i);
}
// Represent object name as empty or single-component composite name.
CompositeName remaining = new CompositeName();
if (objName != null) {
remaining.add(objName);
}
// Debug
//System.out.println("host=" + host + " port=" + port +
// " objName=" + remaining.toString() + "\n");
// Create a registry context.
Context regCtx = new RegistryContext(host, port, env);
return (new ResolveResult(regCtx, remaining));
}
示例4: getRootURLContext
import com.sun.jndi.rmi.registry.RegistryContext; //导入依赖的package包/类
/**
* Resolves the registry portion of "url" to the corresponding
* RMI registry, and returns the atomic object name as the
* remaining name.
*/
protected ResolveResult getRootURLContext(String url, Hashtable env)
throws NamingException
{
if (!url.startsWith("rmi:")) {
throw (new IllegalArgumentException(
"rmiURLContext: name is not an RMI URL: " + url));
}
// Parse the URL.
String host = null;
int port = -1;
String objName = null;
int i = 4; // index into url, following the "rmi:"
if (url.startsWith("//", i)) { // parse "//host:port"
i += 2; // skip past "//"
int slash = url.indexOf('/', i);
if (slash < 0) {
slash = url.length();
}
if (url.startsWith("[", i)) { // at IPv6 literal
int brac = url.indexOf(']', i + 1);
if (brac < 0 || brac > slash) {
throw new IllegalArgumentException(
"rmiURLContext: name is an Invalid URL: " + url);
}
host = url.substring(i, brac + 1); // include brackets
i = brac + 1; // skip past "[...]"
} else { // at host name or IPv4
int colon = url.indexOf(':', i);
int hostEnd = (colon < 0 || colon > slash)
? slash
: colon;
if (i < hostEnd) {
host = url.substring(i, hostEnd);
}
i = hostEnd; // skip past host
}
if ((i + 1 < slash)) {
if ( url.startsWith(":", i)) { // parse port
i++; // skip past ":"
port = Integer.parseInt(url.substring(i, slash));
} else {
throw new IllegalArgumentException(
"rmiURLContext: name is an Invalid URL: " + url);
}
}
i = slash;
}
if ("".equals(host)) {
host = null;
}
if (url.startsWith("/", i)) { // skip "/" before object name
i++;
}
if (i < url.length()) {
objName = url.substring(i);
}
// Represent object name as empty or single-component composite name.
CompositeName remaining = new CompositeName();
if (objName != null) {
remaining.add(objName);
}
// Debug
//System.out.println("host=" + host + " port=" + port +
// " objName=" + remaining.toString() + "\n");
// Create a registry context.
Context regCtx = new RegistryContext(host, port, env);
return (new ResolveResult(regCtx, remaining));
}