2

我面临一个奇怪的问题。我想要的只是用 DFC 创建一个新文件夹。但是,当我执行代码(JUnit 或在应用程序内部)时,没有创建文件夹,而且令人惊讶的是没有抛出异常。所以我猜错误在其他地方。

这是我的代码:

public void createNewFolder(String sFolderName, String sParentId)
{
    IDfSession session = null;
    try 
    {
        session = getSession();     
        IDfFolder newFolder = (IDfFolder) session.newObject("dm_folder");
        newFolder.setObjectName(sFolderName);
        newFolder.link(sParentId);
        newFolder.save();
        String sDump = newFolder.dump();

        System.out.println("Folder ["+sFolderName+"] saved.");
        System.out.println("Folder has id ["+newFolder.getId("r_object_id")+"]");
    }
    catch (DfException e) 
    {
        e.printStackTrace();
    }
    finally
    {
        m_sessionManager.release(session);
    }

作为回报,我得到了一个 sysobject id,但是当我尝试使用 dql 语句获取它时,我找不到它。

我尝试执行创建文件夹的 dql create 查询。这不适用于 JUnit 或正在运行的应用程序,但是当我手动执行它时,它就可以正常工作。

这是我的 getSession() 方法

private IDfSession getSession()
{
    try 
    {
        if (m_sessionManager == null)
        {
                return establishConnection();
        }
        else
        {
            return m_sessionManager.getSession(m_sRepository);
        }
    } 
    catch (DfException e) 
    {
        e.printStackTrace();
    }
    return null;
}

有什么想法吗?

4

2 回答 2

0

当您尝试使用 DFC 创建文件夹时,您使用的是哪个用户?它与您稍后用于 DQL 检查的相同吗?如果不是,则可能是该文件夹的 ACL 不允许您查看具有不同用户的新创建文件夹。

于 2011-08-24T13:35:49.140 回答
0

感谢 unicron 的评论。这实际上让我解决了问题。在我没有在问题中发布的建立连接()方法中,我实际上使用了 beginTransaction()。删除它解决了问题,一切正常。

public IDfSession establishConnection(String sUserName, String sPassword, String sRepository) throws DfException 
{
    System.out.println("Login");
    IDfClientX clientX = new DfClientX();

    IDfClient localClient = clientX.getLocalClient();
    IDfSessionManager sessionManager = localClient.newSessionManager();
    IDfLoginInfo loginInfo = new DfLoginInfo();
    loginInfo.setUser(sUserName);
    loginInfo.setPassword(sPassword);
    sessionManager.setIdentity(sRepository, loginInfo);

// THIS IS THE EVIL LINE !
    sessionManager.beginTransaction();

    System.out.println("sessionmanager ist geladen");
    IDfSession session = sessionManager.getSession(sRepository);
    m_sUserName = sUserName;
    m_sRepository = sRepository;
    m_sessionManager = sessionManager;

    return session;
}
于 2011-08-30T07:25:42.740 回答