[JBoss JIRA] (TEIIDDES-3162) ModuleNotFoundException occurs with dynamic vdb including UDF Jars
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3162?page=com.atlassian.jira.plu... ]
Barry LaFond resolved TEIIDDES-3162.
------------------------------------
Fix Version/s: 11.1.1
Assignee: Barry LaFond
Resolution: Done
master: https://github.com/Teiid-Designer/teiid-designer/commit/b1eb8b8a6ed49aab8...
> ModuleNotFoundException occurs with dynamic vdb including UDF Jars
> ------------------------------------------------------------------
>
> Key: TEIIDDES-3162
> URL: https://issues.jboss.org/browse/TEIIDDES-3162
> Project: Teiid Designer
> Issue Type: Bug
> Components: Dynamic VDBs
> Affects Versions: 11.1.1
> Environment: DevstudioIS 11.1.0 CR1 (Teiid Desinger 11.1.1)
> Reporter: Hiroki Daicho
> Assignee: Barry LaFond
> Fix For: 11.1.1
>
> Attachments: reproducer_project.zip
>
>
> Teiid desinger 11.1.1 generate UDF jars with comma separated to dynamic vdb as follows.
> {code}
> <property name="lib" value="deployement.test.jar, deployement.test2.jar"/>
> {code}
> But ModuleNotFoundException occurs in teiid server when the dynamic vdb deployed.
> {code}
> ERROR [org.jboss.msc.service.fail] (MSC service thread 1-6) MSC000001: Failed to start service jboss.deployment.unit."testvdb-vdb.xml".DEPENDENCIES: org.jboss.msc.service.StartException in service jboss.deployment.unit."testvdb-vdb.xml".DEPENDENCIES: JBAS018733: Failed to process phase DEPENDENCIES of deployment "testvdb-vdb.xml"
> at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:166) [jboss-as-server-7.5.9.Final-redhat-2.jar:7.5.9.Final-redhat-2]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1980) [jboss-msc-1.1.6.Final-redhat-1.jar:1.1.6.Final-redhat-1]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1913) [jboss-msc-1.1.6.Final-redhat-1.jar:1.1.6.Final-redhat-1]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [rt.jar:1.8.0_131]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [rt.jar:1.8.0_131]
> at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
> Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: TEIID50088 Failed to load module deployment.test.jar, for UDF in VDB testvdb.1:org.jboss.modules.ModuleNotFoundException: deployment.test.jar,:main
> at org.teiid.jboss.VDBDependencyDeployer.deploy(VDBDependencyDeployer.java:85)
> at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:159) [jboss-as-server-7.5.9.Final-redhat-2.jar:7.5.9.Final-redhat-2]
> ... 5 more
> {code}
> Teiid expects space delimited list for the module names.
> "The lib property value may contain a space delimited list of module names if more than one dependency is needed."
> https://access.redhat.com/documentation/en-us/red_hat_jboss_data_virtuali...
> If changing vdb to use space delimited as follows, deployment was succeeded.
> {code}
> <property name="lib" value="deployement.test.jar deployement.test2.jar"/>
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months
[JBoss JIRA] (TEIIDDES-3162) ModuleNotFoundException occurs with dynamic vdb including UDF Jars
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3162?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-3162:
----------------------------------------
[~hiroki.daicho] Another workaround would be to click the "All Edit XML" option in the dialog and remove the commas.
> ModuleNotFoundException occurs with dynamic vdb including UDF Jars
> ------------------------------------------------------------------
>
> Key: TEIIDDES-3162
> URL: https://issues.jboss.org/browse/TEIIDDES-3162
> Project: Teiid Designer
> Issue Type: Bug
> Components: Dynamic VDBs
> Affects Versions: 11.1.1
> Environment: DevstudioIS 11.1.0 CR1 (Teiid Desinger 11.1.1)
> Reporter: Hiroki Daicho
> Attachments: reproducer_project.zip
>
>
> Teiid desinger 11.1.1 generate UDF jars with comma separated to dynamic vdb as follows.
> {code}
> <property name="lib" value="deployement.test.jar, deployement.test2.jar"/>
> {code}
> But ModuleNotFoundException occurs in teiid server when the dynamic vdb deployed.
> {code}
> ERROR [org.jboss.msc.service.fail] (MSC service thread 1-6) MSC000001: Failed to start service jboss.deployment.unit."testvdb-vdb.xml".DEPENDENCIES: org.jboss.msc.service.StartException in service jboss.deployment.unit."testvdb-vdb.xml".DEPENDENCIES: JBAS018733: Failed to process phase DEPENDENCIES of deployment "testvdb-vdb.xml"
> at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:166) [jboss-as-server-7.5.9.Final-redhat-2.jar:7.5.9.Final-redhat-2]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1980) [jboss-msc-1.1.6.Final-redhat-1.jar:1.1.6.Final-redhat-1]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1913) [jboss-msc-1.1.6.Final-redhat-1.jar:1.1.6.Final-redhat-1]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [rt.jar:1.8.0_131]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [rt.jar:1.8.0_131]
> at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
> Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: TEIID50088 Failed to load module deployment.test.jar, for UDF in VDB testvdb.1:org.jboss.modules.ModuleNotFoundException: deployment.test.jar,:main
> at org.teiid.jboss.VDBDependencyDeployer.deploy(VDBDependencyDeployer.java:85)
> at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:159) [jboss-as-server-7.5.9.Final-redhat-2.jar:7.5.9.Final-redhat-2]
> ... 5 more
> {code}
> Teiid expects space delimited list for the module names.
> "The lib property value may contain a space delimited list of module names if more than one dependency is needed."
> https://access.redhat.com/documentation/en-us/red_hat_jboss_data_virtuali...
> If changing vdb to use space delimited as follows, deployment was succeeded.
> {code}
> <property name="lib" value="deployement.test.jar deployement.test2.jar"/>
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months
[JBoss JIRA] (TEIIDDES-3164) JDBC importer interprets varbinary as byte
by Mario Majernik (JIRA)
Mario Majernik created TEIIDDES-3164:
----------------------------------------
Summary: JDBC importer interprets varbinary as byte
Key: TEIIDDES-3164
URL: https://issues.jboss.org/browse/TEIIDDES-3164
Project: Teiid Designer
Issue Type: Quality Risk
Components: Import/Export
Affects Versions: 11.1
Reporter: Mario Majernik
Priority: Minor
Attachments: ss01.png
When I try JDBC import from Ingres database the datatype Varbinary is interpreted as Byte. (ss01.png)
Workaround: Use Teiid Connection Import.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months
[JBoss JIRA] (TEIIDDES-3163) Translator override properties can not be updated after re-generating a dynamic vdb
by Hiroki Daicho (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3163?page=com.atlassian.jira.plu... ]
Hiroki Daicho updated TEIIDDES-3163:
------------------------------------
Description:
If dynamic vdb has already generated, Translator override properties can not be modified by regenerate dynamic vdb.
1. Add Translator override property to vdb (testvdb.vdb). e.g. prop1 -> 100
2. generate dynamic vdb (testvdb-vdb.xml).
{code}
<property name="prop1" value="100"/>
{code}
3. Modify the propery in vdb (testvdb.vdb). e.g. prop1 -> 199
4. generate dynamic vdb (testvdb-vdb.xml).
5. the property is not updated to 199 in the dynamic vdb xml.
{code}
<property name="prop1" value="100"/>
{code}
was:
If dynamic vdb has already generated, Translator override properties can not be modified by regenerate dynamic vdb.
1. Add Translator override property to vdb (testvdb.vdb). e.g. testpror1 -> 100
2. generate dynamic vdb (testvdb-vdb.xml).
{code}
<property name="prop1" value="100"/>
{code}
3. Modify the propery in vdb (testvdb.vdb). e.g. testprop1 -> 199
4. generate dynamic vdb (testvdb-vdb.xml).
5. the property is not updated to 199 in the dynamic vdb xml.
{code}
<property name="prop1" value="100"/>
{code}
> Translator override properties can not be updated after re-generating a dynamic vdb
> -----------------------------------------------------------------------------------
>
> Key: TEIIDDES-3163
> URL: https://issues.jboss.org/browse/TEIIDDES-3163
> Project: Teiid Designer
> Issue Type: Bug
> Components: Dynamic VDBs
> Affects Versions: 11.1.1
> Environment: Devstudio 11.1.0 CR1 (Teiid Desinger 11.1.1)
> Reporter: Hiroki Daicho
> Attachments: reproducer_project.zip
>
>
> If dynamic vdb has already generated, Translator override properties can not be modified by regenerate dynamic vdb.
> 1. Add Translator override property to vdb (testvdb.vdb). e.g. prop1 -> 100
> 2. generate dynamic vdb (testvdb-vdb.xml).
> {code}
> <property name="prop1" value="100"/>
> {code}
> 3. Modify the propery in vdb (testvdb.vdb). e.g. prop1 -> 199
> 4. generate dynamic vdb (testvdb-vdb.xml).
> 5. the property is not updated to 199 in the dynamic vdb xml.
> {code}
> <property name="prop1" value="100"/>
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months
[JBoss JIRA] (TEIIDDES-3163) Translator override properties can not be updated after re-generating a dynamic vdb
by Hiroki Daicho (JIRA)
Hiroki Daicho created TEIIDDES-3163:
---------------------------------------
Summary: Translator override properties can not be updated after re-generating a dynamic vdb
Key: TEIIDDES-3163
URL: https://issues.jboss.org/browse/TEIIDDES-3163
Project: Teiid Designer
Issue Type: Bug
Components: Dynamic VDBs
Affects Versions: 11.1.1
Environment: Devstudio 11.1.0 CR1 (Teiid Desinger 11.1.1)
Reporter: Hiroki Daicho
Attachments: reproducer_project.zip
If dynamic vdb has already generated, Translator override properties can not be modified by regenerate dynamic vdb.
1. Add Translator override property to vdb (testvdb.vdb). e.g. testpror1 -> 100
2. generate dynamic vdb (testvdb-vdb.xml).
{code}
<property name="prop1" value="100"/>
{code}
3. Modify the propery in vdb (testvdb.vdb). e.g. testprop1 -> 199
4. generate dynamic vdb (testvdb-vdb.xml).
5. the property is not updated to 199 in the dynamic vdb xml.
{code}
<property name="prop1" value="100"/>
{code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months
[JBoss JIRA] (TEIIDDES-3162) ModuleNotFoundException occurs with dynamic vdb including UDF Jars
by Hiroki Daicho (JIRA)
Hiroki Daicho created TEIIDDES-3162:
---------------------------------------
Summary: ModuleNotFoundException occurs with dynamic vdb including UDF Jars
Key: TEIIDDES-3162
URL: https://issues.jboss.org/browse/TEIIDDES-3162
Project: Teiid Designer
Issue Type: Bug
Components: Dynamic VDBs
Affects Versions: 11.1.1
Environment: DevstudioIS 11.1.0 CR1 (Teiid Desinger 11.1.1)
Reporter: Hiroki Daicho
Attachments: reproducer_project.zip
Teiid desinger 11.1.1 generate UDF jars with comma separated to dynamic vdb as follows.
{code}
<property name="lib" value="deployement.test.jar, deployement.test2.jar"/>
{code}
But ModuleNotFoundException occurs in teiid server when the dynamic vdb deployed.
{code}
ERROR [org.jboss.msc.service.fail] (MSC service thread 1-6) MSC000001: Failed to start service jboss.deployment.unit."testvdb-vdb.xml".DEPENDENCIES: org.jboss.msc.service.StartException in service jboss.deployment.unit."testvdb-vdb.xml".DEPENDENCIES: JBAS018733: Failed to process phase DEPENDENCIES of deployment "testvdb-vdb.xml"
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:166) [jboss-as-server-7.5.9.Final-redhat-2.jar:7.5.9.Final-redhat-2]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1980) [jboss-msc-1.1.6.Final-redhat-1.jar:1.1.6.Final-redhat-1]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1913) [jboss-msc-1.1.6.Final-redhat-1.jar:1.1.6.Final-redhat-1]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [rt.jar:1.8.0_131]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [rt.jar:1.8.0_131]
at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: TEIID50088 Failed to load module deployment.test.jar, for UDF in VDB testvdb.1:org.jboss.modules.ModuleNotFoundException: deployment.test.jar,:main
at org.teiid.jboss.VDBDependencyDeployer.deploy(VDBDependencyDeployer.java:85)
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:159) [jboss-as-server-7.5.9.Final-redhat-2.jar:7.5.9.Final-redhat-2]
... 5 more
{code}
Teiid expects space delimited list for the module names.
"The lib property value may contain a space delimited list of module names if more than one dependency is needed."
https://access.redhat.com/documentation/en-us/red_hat_jboss_data_virtuali...
If changing vdb to use space delimited as follows, deployment was succeeded.
{code}
<property name="lib" value="deployement.test.jar deployement.test2.jar"/>
{code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months
[JBoss JIRA] (TEIIDDES-3157) Remote server doesn't work when it is defined alone
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3157?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-3157:
-----------------------------------
Fix Version/s: 11.2
(was: 11.1.1)
> Remote server doesn't work when it is defined alone
> ---------------------------------------------------
>
> Key: TEIIDDES-3157
> URL: https://issues.jboss.org/browse/TEIIDDES-3157
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 11.1.1
> Reporter: Matej Kralik
> Assignee: Barry LaFond
> Priority: Critical
> Fix For: 11.2
>
> Attachments: connecting.png, notConnected.png, right.mkv, test.mkv
>
>
> I am not able to connect to the remote server when server list contains only this remote server. When I click the start server, a teiid instance is not connected (notConnected.png).
> In the error log is this errors:
> {code:java}
> java.lang.IllegalArgumentException: admin
> at org.teiid.core.util.ArgCheck.isNotNull(ArgCheck.java:302)
> at org.teiid.runtime.client.admin.ExecutionAdmin.<init>(ExecutionAdmin.java:123)
> at org.teiid.runtime.client.admin.ExecutionAdminFactory.createExecutionAdmin(ExecutionAdminFactory.java:57)
> at org.teiid.designer.runtime.registry.TeiidRuntimeRegistry.getExecutionAdmin(TeiidRuntimeRegistry.java:90)
> at org.teiid.designer.runtime.TeiidServer.connect(TeiidServer.java:243)
> at org.teiid.designer.runtime.TeiidServer.getDataSources(TeiidServer.java:637)
> at org.teiid.designer.runtime.importer.ImportManager.getDataSources(ImportManager.java:440)
> at org.teiid.designer.datasources.ui.wizard.TeiidDataSourceManager.getDataSources(TeiidDataSourceManager.java:299)
> at org.teiid.designer.datasources.ui.sources.GlobalConnectionManager.refreshDataSourceList(GlobalConnectionManager.java:117)
> at org.teiid.designer.datasources.ui.sources.ConnectionProfilesPanel.refresh(ConnectionProfilesPanel.java:696)
> at org.teiid.designer.datasources.ui.sources.DataSourcesSection.refresh(DataSourcesSection.java:77)
> at org.teiid.designer.datasources.ui.sources.DefaultServerSection$2$1.run(DefaultServerSection.java:133)
> at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:37)
> at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:182)
> at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4213)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3820)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$5.run(PartRenderingEngine.java:1150)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1039)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:153)
> at org.eclipse.ui.internal.Workbench.lambda$3(Workbench.java:680)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:594)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:148)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:151)
> at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:388)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:243)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:498)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:653)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:590)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1499)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1472)
> {code}
> {code:java}
> org.eclipse.equinox.security.storage.StorageException: Unable to decrypt entry encoded with default password as no default password is currently specified.
> at org.eclipse.equinox.internal.security.storage.SecurePreferencesRoot.getPassword(SecurePreferencesRoot.java:223)
> at org.eclipse.equinox.internal.security.storage.SecurePreferences.get(SecurePreferences.java:264)
> at org.eclipse.equinox.internal.security.storage.SecurePreferencesWrapper.get(SecurePreferencesWrapper.java:106)
> at org.teiid.datatools.connectivity.security.impl.EquinoxSecureStorageProvider.getFromSecureStorage(EquinoxSecureStorageProvider.java:67)
> at org.teiid.designer.runtime.TeiidConnectionInfo.retrievePassword(TeiidConnectionInfo.java:230)
> at org.teiid.designer.runtime.TeiidConnectionInfo.getPassword(TeiidConnectionInfo.java:299)
> at org.teiid.designer.runtime.TeiidConnectionInfo.setAll(TeiidConnectionInfo.java:399)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.tryConnecting(TeiidParentServerListener.java:311)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.run(TeiidParentServerListener.java:251)
> at java.lang.Thread.run(Thread.java:745)
> {code}
> {code:java}
> java.lang.IllegalArgumentException: admin
> at org.teiid.core.util.ArgCheck.isNotNull(ArgCheck.java:302)
> at org.teiid.runtime.client.admin.ExecutionAdmin.<init>(ExecutionAdmin.java:123)
> at org.teiid.runtime.client.admin.ExecutionAdminFactory.createExecutionAdmin(ExecutionAdminFactory.java:57)
> at org.teiid.designer.runtime.registry.TeiidRuntimeRegistry.getExecutionAdmin(TeiidRuntimeRegistry.java:90)
> at org.teiid.designer.runtime.TeiidServer.connect(TeiidServer.java:243)
> at org.teiid.designer.runtime.TeiidServer.reconnect(TeiidServer.java:293)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.tryConnecting(TeiidParentServerListener.java:314)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.run(TeiidParentServerListener.java:251)
> at java.lang.Thread.run(Thread.java:745)
> {code}
> When I have defined some local server before, and after that I define remote server, it works. I click start on the remote server, a teiid instance will be connecting. (connecting.png)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months
[JBoss JIRA] (TEIIDDES-3158) TeiidDesigner not responding during work with remote server
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3158?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-3158:
-----------------------------------
Fix Version/s: 11.2
(was: 11.1.1)
> TeiidDesigner not responding during work with remote server
> -----------------------------------------------------------
>
> Key: TEIIDDES-3158
> URL: https://issues.jboss.org/browse/TEIIDDES-3158
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 11.1.1
> Reporter: Matej Kralik
> Assignee: Barry LaFond
> Priority: Critical
> Fix For: 11.2
>
> Attachments: connected.png, errors.png
>
>
> I create and start remote server. After I set this server as Default in the connection view, JBDS is frozen (Not Responding) [I was waiting for 30 minutes].
> I restarted JBDS and start the remote server again, but only error appeared in log:
> {code:java}
> org.jboss.ide.eclipse.as.management.core.JBoss7ManangerException: java.io.IOException: java.net.ConnectException: JBAS012174: Could not connect to remote://dvqe05.mw.lab.eng.bos.redhat.com:9999. The connection failed
> at org.jboss.ide.eclipse.as.internal.management.eap61plus.EAP61PlusManager.execute(EAP61PlusManager.java:361)
> at org.jboss.ide.eclipse.as.internal.management.eap61plus.EAP61PlusManagerService.execute(EAP61PlusManagerService.java:172)
> at org.jboss.ide.eclipse.as.management.core.JBoss7ManagerServiceProxy.execute(JBoss7ManagerServiceProxy.java:87)
> at org.teiid.designer.runtime.adapter.JBoss7ServerUtil.executeRequest(JBoss7ServerUtil.java:78)
> at org.teiid.designer.runtime.adapter.JBoss7ServerUtil.isTeiidServer(JBoss7ServerUtil.java:209)
> at org.teiid.designer.runtime.adapter.TeiidServerAdapterFactory.adaptJBoss7Server(TeiidServerAdapterFactory.java:191)
> at org.teiid.designer.runtime.adapter.TeiidServerAdapterFactory.adaptServer(TeiidServerAdapterFactory.java:90)
> at org.teiid.designer.runtime.adapter.TeiidServerAdapterFactory.getAdapter(TeiidServerAdapterFactory.java:52)
> at org.eclipse.core.internal.runtime.AdapterManager.getAdapter(AdapterManager.java:335)
> at org.eclipse.core.internal.runtime.AdapterManager.loadAdapter(AdapterManager.java:362)
> at org.eclipse.core.internal.expressions.AdaptExpression.evaluate(AdaptExpression.java:93)
> at org.eclipse.core.internal.expressions.CompositeExpression.evaluateAnd(CompositeExpression.java:51)
> at org.eclipse.core.internal.expressions.AndExpression.evaluate(AndExpression.java:31)
> at org.eclipse.ui.internal.navigator.NavigatorPlugin$Evaluator.run(NavigatorPlugin.java:247)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.ui.internal.navigator.CustomAndExpression.evaluate(CustomAndExpression.java:71)
> at org.eclipse.ui.internal.navigator.NavigatorPlugin$Evaluator.run(NavigatorPlugin.java:247)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.ui.internal.navigator.NavigatorPlugin.safeEvaluate(NavigatorPlugin.java:262)
> at org.eclipse.ui.internal.navigator.extensions.NavigatorContentDescriptor.isTriggerPoint(NavigatorContentDescriptor.java:418)
> at org.eclipse.ui.internal.navigator.extensions.NavigatorContentDescriptorManager.findDescriptors(NavigatorContentDescriptorManager.java:174)
> at org.eclipse.ui.internal.navigator.extensions.NavigatorContentDescriptorManager.findDescriptorsForTriggerPoint(NavigatorContentDescriptorManager.java:128)
> at org.eclipse.ui.internal.navigator.NavigatorContentService.findDescriptorsByTriggerPoint(NavigatorContentService.java:770)
> at org.eclipse.ui.internal.navigator.NavigatorContentService.findContentExtensionsByTriggerPoint(NavigatorContentService.java:618)
> at org.eclipse.ui.internal.navigator.NavigatorContentService.findContentExtensionsByTriggerPoint(NavigatorContentService.java:599)
> at org.eclipse.ui.internal.navigator.NavigatorContentServiceContentProvider.hasChildren(NavigatorContentServiceContentProvider.java:386)
> at org.eclipse.ui.internal.navigator.NavigatorContentServiceContentProvider.hasChildren(NavigatorContentServiceContentProvider.java:434)
> at org.eclipse.jface.viewers.AbstractTreeViewer.isExpandable(AbstractTreeViewer.java:2099)
> at org.eclipse.jface.viewers.TreeViewer.isExpandable(TreeViewer.java:537)
> at org.eclipse.jface.viewers.AbstractTreeViewer.isExpandable(AbstractTreeViewer.java:2137)
> at org.eclipse.jface.viewers.AbstractTreeViewer.updatePlus(AbstractTreeViewer.java:2819)
> at org.eclipse.jface.viewers.TreeViewer.updatePlus(TreeViewer.java:785)
> at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh(AbstractTreeViewer.java:1860)
> at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh(AbstractTreeViewer.java:1827)
> at org.eclipse.ui.navigator.CommonViewer.internalRefresh(CommonViewer.java:529)
> at org.eclipse.jface.viewers.StructuredViewer.lambda$3(StructuredViewer.java:1531)
> at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1447)
> at org.eclipse.jface.viewers.TreeViewer.preservingSelection(TreeViewer.java:354)
> at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1408)
> at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1531)
> at org.eclipse.jface.viewers.ColumnViewer.refresh(ColumnViewer.java:535)
> at org.eclipse.ui.navigator.CommonViewer.refresh(CommonViewer.java:346)
> at org.eclipse.wst.server.ui.internal.cnf.ServersView2$6.run(ServersView2.java:277)
> at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:37)
> at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:182)
> at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4213)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3820)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$5.run(PartRenderingEngine.java:1150)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1039)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:153)
> at org.eclipse.ui.internal.Workbench.lambda$3(Workbench.java:680)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:594)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:148)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:151)
> at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:388)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:243)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:498)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:653)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:590)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1499)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1472)
> Caused by: java.io.IOException: java.net.ConnectException: JBAS012174: Could not connect to remote://dvqe05.mw.lab.eng.bos.redhat.com:9999. The connection failed
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:75)
> at org.jboss.ide.eclipse.as.internal.management.eap61plus.EAP61PlusManager.execute(EAP61PlusManager.java:350)
> ... 68 more
> Caused by: java.net.ConnectException: JBAS012174: Could not connect to remote://dvqe05.mw.lab.eng.bos.redhat.com:9999. The connection failed
> at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:133)
> at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:256)
> at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
> at org.jboss.as.protocol.mgmt.FutureManagementChannel$Establishing.getChannel(FutureManagementChannel.java:208)
> at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:144)
> at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:65)
> at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:123)
> at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:98)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
> ... 70 more
> Caused by: javax.security.sasl.SaslException: Authentication failed: the server presented no authentication mechanisms
> at org.jboss.remoting3.remote.ClientConnectionOpenListener$Capabilities.handleEvent(ClientConnectionOpenListener.java:388)
> at org.jboss.remoting3.remote.ClientConnectionOpenListener$Capabilities.handleEvent(ClientConnectionOpenListener.java:242)
> at org.xnio.ChannelListeners.invokeChannelListener(ChannelListeners.java:72)
> at org.xnio.channels.TranslatingSuspendableChannel.handleReadable(TranslatingSuspendableChannel.java:189)
> at org.xnio.channels.TranslatingSuspendableChannel$1.handleEvent(TranslatingSuspendableChannel.java:103)
> at org.xnio.ChannelListeners.invokeChannelListener(ChannelListeners.java:72)
> at org.xnio.channels.TranslatingSuspendableChannel.handleReadable(TranslatingSuspendableChannel.java:189)
> at org.xnio.ssl.JsseConnectedSslStreamChannel.handleReadable(JsseConnectedSslStreamChannel.java:183)
> at org.xnio.channels.TranslatingSuspendableChannel$1.handleEvent(TranslatingSuspendableChannel.java:103)
> at org.xnio.ChannelListeners.invokeChannelListener(ChannelListeners.java:72)
> at org.xnio.nio.NioHandle.run(NioHandle.java:90)
> at org.xnio.nio.WorkerThread.run(WorkerThread.java:198)
> at ...asynchronous invocation...(Unknown Source)
> at org.jboss.remoting3.EndpointImpl.doConnect(EndpointImpl.java:270)
> at org.jboss.remoting3.EndpointImpl.doConnect(EndpointImpl.java:251)
> at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:349)
> at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:337)
> at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:84)
> at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:103)
> ... 80 more
> {code}
> I had to delete and define remote server again. After that, the server was started. But again, after set this remote server as default teiid server JBDS was frozen.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 4 months