0

我创建了一个 Java 类,它连接到需要 NTLM 身份验证的 IIS 网站。Java 类使用 JCIFS 库并基于以下示例:

Config.registerSmbURLHandler();
Config.setProperty("jcifs.smb.client.domain", domain);
Config.setProperty("jcifs.smb.client.username", user);
Config.setProperty("jcifs.smb.client.password", password);

URL url = new URL(location);
BufferedReader reader = new BufferedReader(
            new InputStreamReader(url.openStream()));
String line;
while ((line = reader.readLine()) != null) {
    System.out.println(line);
}

该示例从命令提示符执行时运行良好,但是一旦我尝试在 servlet 容器(特别是 GlassFish)中使用相同的代码,我就会收到一条IOException包含消息“服务器返回 HTTP 响应代码:401 for URL:.. ……”。

我尝试将 jcifs jar 移动到系统类路径(%GLASSFISH%/lib),但这似乎没有任何区别。

建议高度赞赏。

4

2 回答 2

3

Java 5/6 似乎已经支持我尝试做的事情,因此我能够删除 JCIFS API 并改为执行以下操作:

public static String getResponse(final ConnectionSettings settings, 
        String request) throws IOException {

    String url = settings.getUrl() + "/" + request;

    Authenticator.setDefault(new Authenticator() {
        @Override
        public PasswordAuthentication getPasswordAuthentication() {
            System.out.println(getRequestingScheme() + " authentication")
            // Remember to include the NT domain in the username
            return new PasswordAuthentication(settings.getDomain() + "\\" + 
                settings.getUsername(), settings.getPassword().toCharArray());
        }
    });

    URL urlRequest = new URL(url);
    HttpURLConnection conn = (HttpURLConnection) urlRequest.openConnection();
    conn.setDoOutput(true);
    conn.setDoInput(true);
    conn.setRequestMethod("GET");

    StringBuilder response = new StringBuilder();
    InputStream stream = conn.getInputStream();
    BufferedReader in = new BufferedReader(new InputStreamReader(stream));
    String str = "";
    while ((str = in.readLine()) != null) {
        response.append(str);
    }
    in.close();

    return response.toString();
}
于 2009-06-27T22:16:52.930 回答
0

听起来 JCIFS 无权设置工厂来处理 Glassfish 中的 URL。您应该检查策略设置 (checkSetFactory)。

Config#registerSmbURLHandler() 可能会吞下 SecurityException。

于 2009-06-26T10:40:48.233 回答