Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[ecf-dev] ContainerTypeDescription cannot be null

Hi all,

So, I have studied ECF and I'm trying run example called: org.eclipse.ecf.example.rcpchat download (ecf1.osuosl.org).
But when I click in ECF -> connect appear following error: ContainerTypeDescription cannot be null

org.eclipse.ecf.core.ContainerCreateException: ContainerTypeDescription cannot be null
    at org.eclipse.ecf.core.ContainerFactory.throwContainerCreateException(ContainerFactory.java:197)
    at org.eclipse.ecf.core.ContainerFactory.createContainer(ContainerFactory.java:246)
    at org.eclipse.ecf.core.ContainerFactory.createContainer(ContainerFactory.java:233)
    at org.eclipse.ecf.example.rcpchat.wizard.XMPPConnectWizard.init(XMPPConnectWizard.java:62)
    at org.eclipse.ecf.example.rcpchat.actions.WorkbenchAction.run(WorkbenchAction.java:69)

...

I checked the class WorkbenchAction.java and didn't find error.

// Create the wizard dialog
        IContainer container = null;
        try {
            container = ContainerFactory.getDefault().createContainer("ecf.xmpp.smack");
           
        } catch (ContainerCreateException e) {
            MessageDialog.openError(this.window.getShell(), "Create Error", "Could not create XMPP container.\n\nError: "+e.getLocalizedMessage());
        }
        XMPPConnectWizard connectWizard = new XMPPConnectWizard();
        connectWizard.init(getWorkbench(), container);


Does someone have any idea?

Thanks advance...

--
Razec


Back to the top