1

Websphere用の管理クライアントプログラムを作成しようとしていますが、接続しようとすると次のメッセージが表示されます。

たぶん私はいくつかのライブラリが不足しています(私はメモ帳でアプリを作成します)。

at TryConnection1.main(TryConnection1.java:37) Caused by: java.lang.ClassNotFoundException: com.ibm.websphere.security.auth.WSL oginFailedException
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    ... 1 more

私のコード:

import java.util.Properties;
import javax.management.MalformedObjectNameException; 
import javax.management.ObjectName; 

import javax.management.*;
import com.ibm.websphere.management.*; 
import com.ibm.websphere.management.AdminClient; 
import com.ibm.websphere.management.AdminClientFactory; 
import com.ibm.websphere.management.exception.*;

import com.ibm.websphere.management.exception.ConnectorException;

public class TryConnection1 {

    /**  * @param args  */

    public static void main(String[] args) {

    Properties connectProps = new Properties(); 
    connectProps.setProperty(AdminClient.CONNECTOR_TYPE, AdminClient.CONNECTOR_TYPE_SOAP);

    connectProps.setProperty(AdminClient.CONNECTOR_HOST, "hostgoeshere");
    connectProps.setProperty(AdminClient.CONNECTOR_PORT, "portgoeshere");
    connectProps.setProperty(AdminClient.USERNAME, "usernamegoeshere");
    connectProps.setProperty(AdminClient.PASSWORD, "passgoeshere");

    AdminClient adminClient = null; 
    try {
        adminClient = AdminClientFactory.createAdminClient(connectProps); 
    } catch(ConnectorException e) {
        System.out.println("Exception creating admin client: " + e); }
    }
}
4

2 に答える 2

2

$ WEBSPHERE_HOME / AppServer / runtimes / com.ibm.ws.admin.client_8.5.0.jar、または別のWebSphereバージョンを使用している場合は同様のものをクラスパスに追加してみてください。これは、WebSphereAdminClientに必要なjarです。

于 2013-03-26T12:32:38.440 に答える
0

追加してみてください:

import com.ibm.websphere.security.auth.*;
于 2013-03-26T07:50:56.453 に答える