2009-06-15 90 views
0

C++ noob在這裏想知道如何通過Java servlet來驗證Windows用戶。JNI調用來使用LogonUser對用戶進行身份驗證?

這裏是我已經把拿在JNI調用從我的Java Servlet與用戶的用戶名域和密碼的代碼:在編譯的時候

#include <stdio.h> 
#include <string.h> 
#include <sys/stat.h> 
#include <stdlib.h> 

#include "Validate.h"  

JNIEXPORT jstring JNICALL Java_Validate_takeInfo(JNIEnv *env, jobject obj, jstring domain, jstring id, jstring idca, jstring password) 
{ 
    const char *nt_domain; 
    const char *nt_id; 
    const char *nt_idca; 
    const char *nt_password; 

    nt_domain = env->GetStringUTFChars(domain, NULL); 
    nt_id = env->GetStringUTFChars(id, NULL); 
    nt_idca= env->GetStringUTFChars(idca, NULL); 
    nt_password = env->GetStringUTFChars(password, NULL); 

    handle hToken = 0; 
    char *otherString; 
    otherString = LogonUser(nt_id, nt_domain, nt_password, LOGON32_LOGON_NETWORK, LOGON32_PROVIDER_DEFAULT, &hToken); 

    jstring newString = env->NewStringUTF((const char*)otherString); 
    return newString; 
} 

我得到這些錯誤:

D:\JNI\Validate.cpp(21) : error C2065: 'handle' : undeclared identifier 
D:\JNI\Validate.cpp(21) : error C2146: syntax error : missing ';' before 
ier 'hToken' 
D:\JNI\Validate.cpp(21) : error C2065: 'hToken' : undeclared identifier 
D:\JNI\Validate.cpp(24) : error C2065: 'LOGON32_LOGON_NETWORK' : undeclar 
tifier 
D:\JNI\Validate.cpp(24) : error C2065: 'LOGON32_PROVIDER_DEFAULT' : undec 
dentifier 
D:\JNI\Validate.cpp(24) : error C3861: 'LogonUser': identifier not found 

我假設我不包括我需要的東西。任何幫助是極大的讚賞。

回答

0

您的編譯器找不到LogonUser,表明您缺少Windows頭文件。包括windows.h

另外,通用窗口句柄類型拼寫爲HANDLE,全部在大寫字母中。

查看the LogonUser docs瞭解更多詳情。

相關問題