DFC using Java Web Start

prg_ab_ch
prg_ab_ch Member
edited June 6, 2014 in Documentum #1

Hi,

Is it possible to run DFC on client machine using Java Web Start. I tried creating but getting error on the second line mentioned below :-

IDfClientX clientX = new DfClientX();

IDfClient localClient = clientX.getLocalClient()

The error message appearing on local client console is :-

Exception in thread "AWT-EventQueue-2" java.lang.ExceptionInInitializerError

    at com.documentum.com.DfClientX.getLocalClient(DfClientX.java:43)

    at ImportDossier$1.actionPerformed(ImportDossier.java:51)

    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)

    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)

    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)

    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)

    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)

    at java.awt.Component.processMouseEvent(Unknown Source)

    at javax.swing.JComponent.processMouseEvent(Unknown Source)

    at java.awt.Component.processEvent(Unknown Source)

    at java.awt.Container.processEvent(Unknown Source)

    at java.awt.Component.dispatchEventImpl(Unknown Source)

    at java.awt.Container.dispatchEventImpl(Unknown Source)

    at java.awt.Component.dispatchEvent(Unknown Source)

    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)

    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)

    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)

    at java.awt.Container.dispatchEventImpl(Unknown Source)

    at java.awt.Window.dispatchEventImpl(Unknown Source)

    at java.awt.Component.dispatchEvent(Unknown Source)

    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)

    at java.awt.EventQueue.access$200(Unknown Source)

    at java.awt.EventQueue$3.run(Unknown Source)

    at java.awt.EventQueue$3.run(Unknown Source)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)

    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)

    at java.awt.EventQueue$4.run(Unknown Source)

    at java.awt.EventQueue$4.run(Unknown Source)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)

    at java.awt.EventQueue.dispatchEvent(Unknown Source)

    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)

    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)

    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)

    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)

    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)

    at java.awt.EventDispatchThread.run(Unknown Source)

Caused by: java.lang.NullPointerException

    at java.util.Hashtable.put(Unknown Source)

    at com.documentum.fc.common.impl.preferences.PreferencesManager.readPersistentProperties(PreferencesManager.java:321)

    at com.documentum.fc.common.impl.preferences.PreferencesManager.<init>(PreferencesManager.java:37)

    at com.documentum.fc.common.DfPreferences.initialize(DfPreferences.java:79)

    at com.documentum.fc.common.DfPreferences.getInstance(DfPreferences.java:58)

    at com.documentum.fc.client.DfSimpleDbor.getDefaultDbor(DfSimpleDbor.java:81)

    at com.documentum.fc.client.DfSimpleDbor.<init>(DfSimpleDbor.java:69)

    at com.documentum.fc.client.DfClient$ClientImpl.<init>(DfClient.java:326)

    at com.documentum.fc.client.DfClient.<clinit>(DfClient.java:717)

    ... 38 more

Please let me know if anyone was successful running a dfc on client end using Java Web Start.

Tagged:

Comments

  • prg_ab_ch
    prg_ab_ch Member
    edited June 6, 2014 #2

    Just to add when i am running the application as a standalone application on the client end it is working but the same is not when using java web start.