01: /*
02: * Copyright 1999-2000 Sun Microsystems, Inc. All Rights Reserved.
03: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04: *
05: * This code is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU General Public License version 2 only, as
07: * published by the Free Software Foundation. Sun designates this
08: * particular file as subject to the "Classpath" exception as provided
09: * by Sun in the LICENSE file that accompanied this code.
10: *
11: * This code is distributed in the hope that it will be useful, but WITHOUT
12: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14: * version 2 for more details (a copy is included in the LICENSE file that
15: * accompanied this code).
16: *
17: * You should have received a copy of the GNU General Public License version
18: * 2 along with this work; if not, write to the Free Software Foundation,
19: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20: *
21: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22: * CA 95054 USA or visit www.sun.com if you need additional information or
23: * have any questions.
24: */
25:
26: package com.sun.jndi.url.iiop;
27:
28: import javax.naming.spi.ResolveResult;
29: import javax.naming.*;
30: import java.util.Hashtable;
31: import java.net.MalformedURLException;
32:
33: import com.sun.jndi.cosnaming.IiopUrl;
34: import com.sun.jndi.cosnaming.CorbanameUrl;
35:
36: /**
37: * An IIOP URL context.
38: *
39: * @author Rosanna Lee
40: * @version 1.15 07/05/05
41: */
42:
43: public class iiopURLContext extends
44: com.sun.jndi.toolkit.url.GenericURLContext {
45:
46: iiopURLContext(Hashtable env) {
47: super (env);
48: }
49:
50: /**
51: * Resolves 'name' into a target context with remaining name.
52: * It only resolves the hostname/port number. The remaining name
53: * contains the rest of the name found in the URL.
54: *
55: * For example, with a iiop URL "iiop://localhost:900/rest/of/name",
56: * this method resolves "iiop://localhost:900/" to the "NameService"
57: * context on for the ORB at 'localhost' on port 900,
58: * and returns as the remaining name "rest/of/name".
59: */
60: protected ResolveResult getRootURLContext(String name, Hashtable env)
61: throws NamingException {
62: return iiopURLContextFactory.getUsingURLIgnoreRest(name, env);
63: }
64:
65: /**
66: * Return the suffix of an "iiop", "iiopname", or "corbaname" url.
67: * prefix parameter is ignored.
68: */
69: protected Name getURLSuffix(String prefix, String url)
70: throws NamingException {
71: try {
72: if (url.startsWith("iiop://")
73: || url.startsWith("iiopname://")) {
74: IiopUrl parsedUrl = new IiopUrl(url);
75: return parsedUrl.getCosName();
76: } else if (url.startsWith("corbaname:")) {
77: CorbanameUrl parsedUrl = new CorbanameUrl(url);
78: return parsedUrl.getCosName();
79: } else {
80: throw new MalformedURLException("Not a valid URL: "
81: + url);
82: }
83: } catch (MalformedURLException e) {
84: throw new InvalidNameException(e.getMessage());
85: }
86: }
87: }
|