[JBoss JIRA] (TEIIDDES-3029) Import salesforce via Teiid connection doesn't work
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3029?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-3029:
----------------------------------------
[~mkralik] The line in the stack trace: *Caused by: java.io.InvalidObjectException: Invalid type character 'S'* may indicate that the request contains some invalid info. I'd need the relevant artifacts and access to the referenced SF connection in order to debug into the build of the request below
{code}
request = buildRequest("teiid", "get-schema", params.toArray(new String[params.size()]));//$NON-NLS-1$ //$NON-NLS-2$
try {
ModelNode outcome = this.connection.execute(request);
if (!Util.isSuccess(outcome)) {
throw new AdminProcessingException(Util.getFailureDescription(outcome));
}
return outcome.get(RESULT).asString();
} catch (IOException e) {
throw new AdminComponentException(e); <<<<<<<< CAUGHT AND THROWN HERE
}
{code}
You could try importing via JDBC importer and see if the connect works.
> Import salesforce via Teiid connection doesn't work
> ---------------------------------------------------
>
> Key: TEIIDDES-3029
> URL: https://issues.jboss.org/browse/TEIIDDES-3029
> Project: Teiid Designer
> Issue Type: Bug
> Components: Import/Export
> Affects Versions: 11.0.1
> Environment: Fedora 24
> Reporter: Matej Kralik
> Priority: Blocker
> Attachments: schreenshot1.png
>
>
> When I wanted to import models from salesforce data source via Teiid connection importer, the Teiid importer shows me this error:
> {code:java}
> Error retrieving the Teiid DDL.
> Please check the logs for details...
> {code}
> In the error log is this event:
> java.io.IOException: java.util.concurrent.ExecutionException: Operation failed
> Stacktrace
> {code:java}
> org.teiid.adminapi.AdminComponentException: java.io.IOException: java.util.concurrent.ExecutionException: Operation failed
> at org.teiid.runtime.client.admin.v8.Admin8Factory$AdminImpl.getSchema(Admin8Factory.java:2076)
> at org.teiid.runtime.client.admin.ExecutionAdmin.getSchema(ExecutionAdmin.java:269)
> at org.teiid.designer.runtime.TeiidServer.getSchema(TeiidServer.java:800)
> at org.teiid.designer.runtime.importer.ImportManager.getSchema(ImportManager.java:258)
> at org.teiid.designer.teiidimporter.ui.wizard.TeiidImportManager.getDdl(TeiidImportManager.java:382)
> at org.teiid.designer.teiidimporter.ui.wizard.ShowDDLPage.setVisible(ShowDDLPage.java:337)
> at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1215)
> at org.eclipse.jface.wizard.WizardDialog.lambda$2(WizardDialog.java:1185)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
> at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1185)
> at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:876)
> at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:419)
> at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:618)
> at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:249)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5219)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1340)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4553)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:4143)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:818)
> at org.eclipse.jface.window.Window.open(Window.java:794)
> at org.eclipse.ui.internal.handlers.WizardHandler$Import.executeHandler(WizardHandler.java:158)
> at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:290)
> at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:295)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
> 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:282)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:264)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
> at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:152)
> at org.eclipse.core.commands.Command.executeWithChecks(Command.java:494)
> at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:488)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:210)
> at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:353)
> at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:155)
> at org.eclipse.ui.internal.actions.CommandAction.run(CommandAction.java:165)
> at org.eclipse.ui.actions.ImportResourcesAction.run(ImportResourcesAction.java:99)
> at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:167)
> at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:565)
> at org.eclipse.jface.action.ActionContributionItem.lambda$4(ActionContributionItem.java:397)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5219)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1340)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4553)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:4143)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1121)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1022)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:150)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:687)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:604)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:148)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:138)
> 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:673)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:610)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1519)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1492)
> Caused by: java.io.IOException: java.util.concurrent.ExecutionException: Operation 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.teiid.runtime.client.admin.v8.Admin8Factory$AdminImpl.getSchema(Admin8Factory.java:2070)
> ... 70 more
> Caused by: java.util.concurrent.ExecutionException: Operation failed
> at org.jboss.threads.AsyncFutureTask.operationFailed(AsyncFutureTask.java:74)
> at org.jboss.threads.AsyncFutureTask.get(AsyncFutureTask.java:268)
> at org.jboss.as.controller.client.impl.AbstractDelegatingAsyncFuture.get(AbstractDelegatingAsyncFuture.java:57)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
> ... 72 more
> Caused by: java.io.InvalidObjectException: Invalid type character 'S'
> at org.jboss.dmr.ModelNode.readExternal(ModelNode.java:1538)
> at org.jboss.dmr.ObjectModelValue.<init>(ObjectModelValue.java:62)
> at org.jboss.dmr.ModelNode.readExternal(ModelNode.java:1531)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient$1.handleRequest(AbstractModelControllerClient.java:196)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:270)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleRequest(AbstractMessageHandler.java:235)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:114)
> at org.jboss.as.protocol.mgmt.ManagementChannelReceiver$1.handleMessage(ManagementChannelReceiver.java:58)
> at org.jboss.as.protocol.mgmt.ManagementChannelReceiver.handleMessage(ManagementChannelReceiver.java:86)
> at org.jboss.remoting3.remote.RemoteConnectionChannel$5.run(RemoteConnectionChannel.java:452)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:745)
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-3029) Import salesforce via Teiid connection doesn't work
by Ramesh Reddy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3029?page=com.atlassian.jira.plu... ]
Ramesh Reddy commented on TEIIDDES-3029:
----------------------------------------
Is there a error on Server side too? If not it is DDL parsing error in the Designer side.
> Import salesforce via Teiid connection doesn't work
> ---------------------------------------------------
>
> Key: TEIIDDES-3029
> URL: https://issues.jboss.org/browse/TEIIDDES-3029
> Project: Teiid Designer
> Issue Type: Bug
> Components: Import/Export
> Affects Versions: 11.0.1
> Environment: Fedora 24
> Reporter: Matej Kralik
> Priority: Blocker
> Attachments: schreenshot1.png
>
>
> When I wanted to import models from salesforce data source via Teiid connection importer, the Teiid importer shows me this error:
> {code:java}
> Error retrieving the Teiid DDL.
> Please check the logs for details...
> {code}
> In the error log is this event:
> java.io.IOException: java.util.concurrent.ExecutionException: Operation failed
> Stacktrace
> {code:java}
> org.teiid.adminapi.AdminComponentException: java.io.IOException: java.util.concurrent.ExecutionException: Operation failed
> at org.teiid.runtime.client.admin.v8.Admin8Factory$AdminImpl.getSchema(Admin8Factory.java:2076)
> at org.teiid.runtime.client.admin.ExecutionAdmin.getSchema(ExecutionAdmin.java:269)
> at org.teiid.designer.runtime.TeiidServer.getSchema(TeiidServer.java:800)
> at org.teiid.designer.runtime.importer.ImportManager.getSchema(ImportManager.java:258)
> at org.teiid.designer.teiidimporter.ui.wizard.TeiidImportManager.getDdl(TeiidImportManager.java:382)
> at org.teiid.designer.teiidimporter.ui.wizard.ShowDDLPage.setVisible(ShowDDLPage.java:337)
> at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1215)
> at org.eclipse.jface.wizard.WizardDialog.lambda$2(WizardDialog.java:1185)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
> at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1185)
> at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:876)
> at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:419)
> at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:618)
> at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:249)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5219)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1340)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4553)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:4143)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:818)
> at org.eclipse.jface.window.Window.open(Window.java:794)
> at org.eclipse.ui.internal.handlers.WizardHandler$Import.executeHandler(WizardHandler.java:158)
> at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:290)
> at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:295)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
> 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:282)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:264)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
> at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:152)
> at org.eclipse.core.commands.Command.executeWithChecks(Command.java:494)
> at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:488)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:210)
> at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:353)
> at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:155)
> at org.eclipse.ui.internal.actions.CommandAction.run(CommandAction.java:165)
> at org.eclipse.ui.actions.ImportResourcesAction.run(ImportResourcesAction.java:99)
> at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:167)
> at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:565)
> at org.eclipse.jface.action.ActionContributionItem.lambda$4(ActionContributionItem.java:397)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5219)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1340)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4553)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:4143)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1121)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1022)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:150)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:687)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:604)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:148)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:138)
> 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:673)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:610)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1519)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1492)
> Caused by: java.io.IOException: java.util.concurrent.ExecutionException: Operation 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.teiid.runtime.client.admin.v8.Admin8Factory$AdminImpl.getSchema(Admin8Factory.java:2070)
> ... 70 more
> Caused by: java.util.concurrent.ExecutionException: Operation failed
> at org.jboss.threads.AsyncFutureTask.operationFailed(AsyncFutureTask.java:74)
> at org.jboss.threads.AsyncFutureTask.get(AsyncFutureTask.java:268)
> at org.jboss.as.controller.client.impl.AbstractDelegatingAsyncFuture.get(AbstractDelegatingAsyncFuture.java:57)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
> ... 72 more
> Caused by: java.io.InvalidObjectException: Invalid type character 'S'
> at org.jboss.dmr.ModelNode.readExternal(ModelNode.java:1538)
> at org.jboss.dmr.ObjectModelValue.<init>(ObjectModelValue.java:62)
> at org.jboss.dmr.ModelNode.readExternal(ModelNode.java:1531)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient$1.handleRequest(AbstractModelControllerClient.java:196)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:270)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleRequest(AbstractMessageHandler.java:235)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:114)
> at org.jboss.as.protocol.mgmt.ManagementChannelReceiver$1.handleMessage(ManagementChannelReceiver.java:58)
> at org.jboss.as.protocol.mgmt.ManagementChannelReceiver.handleMessage(ManagementChannelReceiver.java:86)
> at org.jboss.remoting3.remote.RemoteConnectionChannel$5.run(RemoteConnectionChannel.java:452)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:745)
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-2881) Sizing issue in Teiid designer
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2881?page=com.atlassian.jira.plu... ]
Barry LaFond resolved TEIIDDES-2881.
------------------------------------
Resolution: Done
master: https://github.com/Teiid-Designer/teiid-designer/commit/cb919328ff0022c3d...
hopefully this will fix it
changed top, botton, swap buttons to icons instead of text and increased the width of the sort and type resolver text buttons
> Sizing issue in Teiid designer
> ------------------------------
>
> Key: TEIIDDES-2881
> URL: https://issues.jboss.org/browse/TEIIDDES-2881
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 10.0.1
> Reporter: Harshul Madan
> Assignee: Barry LaFond
> Fix For: 11.0.1
>
> Attachments: Screen Shot 2016-07-22 at 9.01.00 AM.png, Screen Shot 2016-07-22 at 9.01.16 AM-1.png, Screen Shot 2017-02-02 at 13.33.16.png, reconciler_resized.png, type-resolver-linux.png
>
>
> When we click on “Reconciler” icon in Transformation editor. The components in the window which opens is not programmed to support different screen size (i.e. doesn’t scale adequately).
> Details:
> MacBook Pro (Retina, 13.3-inch (2560 x 1600))
> Teiid Designer 9.0
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-2881) Sizing issue in Teiid designer
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2881?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2881:
----------------------------------------
I really hate it when the Eclipse project SWT teams who code the native UI components don't work to the same standards. We shouldn't have to develop on ALL OS's just to be sure that a dialog/buttons etc.. are layed out the same.
I attached a snapshot of my Linux resolver dialog and it looks fine. Seems MAC SWT's text button widget sizing requires different settings. I think what I'll do is change all the text buttons to use icons instead and maybe the "Type Resolver..." button I'll change to a link if possible...
> Sizing issue in Teiid designer
> ------------------------------
>
> Key: TEIIDDES-2881
> URL: https://issues.jboss.org/browse/TEIIDDES-2881
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 10.0.1
> Reporter: Harshul Madan
> Assignee: Barry LaFond
> Fix For: 11.0.1
>
> Attachments: Screen Shot 2016-07-22 at 9.01.00 AM.png, Screen Shot 2016-07-22 at 9.01.16 AM-1.png, Screen Shot 2017-02-02 at 13.33.16.png, reconciler_resized.png, type-resolver-linux.png
>
>
> When we click on “Reconciler” icon in Transformation editor. The components in the window which opens is not programmed to support different screen size (i.e. doesn’t scale adequately).
> Details:
> MacBook Pro (Retina, 13.3-inch (2560 x 1600))
> Teiid Designer 9.0
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-2881) Sizing issue in Teiid designer
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2881?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-2881:
-----------------------------------
Attachment: type-resolver-linux.png
> Sizing issue in Teiid designer
> ------------------------------
>
> Key: TEIIDDES-2881
> URL: https://issues.jboss.org/browse/TEIIDDES-2881
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 10.0.1
> Reporter: Harshul Madan
> Assignee: Barry LaFond
> Fix For: 11.0.1
>
> Attachments: Screen Shot 2016-07-22 at 9.01.00 AM.png, Screen Shot 2016-07-22 at 9.01.16 AM-1.png, Screen Shot 2017-02-02 at 13.33.16.png, reconciler_resized.png, type-resolver-linux.png
>
>
> When we click on “Reconciler” icon in Transformation editor. The components in the window which opens is not programmed to support different screen size (i.e. doesn’t scale adequately).
> Details:
> MacBook Pro (Retina, 13.3-inch (2560 x 1600))
> Teiid Designer 9.0
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-2881) Sizing issue in Teiid designer
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2881?page=com.atlassian.jira.plu... ]
Matus Makovy reopened TEIIDDES-2881:
------------------------------------
See attached screenshot
> Sizing issue in Teiid designer
> ------------------------------
>
> Key: TEIIDDES-2881
> URL: https://issues.jboss.org/browse/TEIIDDES-2881
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 10.0.1
> Reporter: Harshul Madan
> Assignee: Barry LaFond
> Fix For: 11.0.1
>
> Attachments: Screen Shot 2016-07-22 at 9.01.00 AM.png, Screen Shot 2016-07-22 at 9.01.16 AM-1.png, Screen Shot 2017-02-02 at 13.33.16.png, reconciler_resized.png
>
>
> When we click on “Reconciler” icon in Transformation editor. The components in the window which opens is not programmed to support different screen size (i.e. doesn’t scale adequately).
> Details:
> MacBook Pro (Retina, 13.3-inch (2560 x 1600))
> Teiid Designer 9.0
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-2881) Sizing issue in Teiid designer
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2881?page=com.atlassian.jira.plu... ]
Matus Makovy updated TEIIDDES-2881:
-----------------------------------
Attachment: Screen Shot 2017-02-02 at 13.33.16.png
> Sizing issue in Teiid designer
> ------------------------------
>
> Key: TEIIDDES-2881
> URL: https://issues.jboss.org/browse/TEIIDDES-2881
> Project: Teiid Designer
> Issue Type: Bug
> Components: Transformations
> Affects Versions: 10.0.1
> Reporter: Harshul Madan
> Assignee: Barry LaFond
> Fix For: 11.0.1
>
> Attachments: Screen Shot 2016-07-22 at 9.01.00 AM.png, Screen Shot 2016-07-22 at 9.01.16 AM-1.png, Screen Shot 2017-02-02 at 13.33.16.png, reconciler_resized.png
>
>
> When we click on “Reconciler” icon in Transformation editor. The components in the window which opens is not programmed to support different screen size (i.e. doesn’t scale adequately).
> Details:
> MacBook Pro (Retina, 13.3-inch (2560 x 1600))
> Teiid Designer 9.0
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-2909) NPE when deploying VDB via Designer if version is anything but 1
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2909?page=com.atlassian.jira.plu... ]
Matus Makovy closed TEIIDDES-2909.
----------------------------------
> NPE when deploying VDB via Designer if version is anything but 1
> ----------------------------------------------------------------
>
> Key: TEIIDDES-2909
> URL: https://issues.jboss.org/browse/TEIIDDES-2909
> Project: Teiid Designer
> Issue Type: Bug
> Components: VDB & Execution
> Affects Versions: 9.0.7
> Reporter: Debbie Steigner
> Assignee: Barry LaFond
> Labels: release_notes
> Fix For: 11.0.1
>
>
> If the Version is anything but 1 in the VDB editor in Designer 9.0.7, the below NPE is thrown in Designer, but the VDB is deployed successfully on the server.
> [1]
> !ENTRY org.teiid.designer.dqp.ui 4 0 2016-09-01 06:47:52.499
> !MESSAGE
> !STACK 0
> java.lang.NullPointerException
> at org.teiid.runtime.client.admin.ExecutionAdmin.doDeployVdb(ExecutionAdmin.java:240)
> at org.teiid.runtime.client.admin.ExecutionAdmin.deployVdb(ExecutionAdmin.java:181)
> at org.teiid.designer.runtime.TeiidServer.deployVdb(TeiidServer.java:618)
> at org.teiid.designer.runtime.ui.vdb.VdbDeployer.deploy(VdbDeployer.java:307)
> at org.teiid.designer.runtime.ui.actions.DeployVdbAction$1.run(DeployVdbAction.java:320)
> at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122)
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-2909) NPE when deploying VDB via Designer if version is anything but 1
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2909?page=com.atlassian.jira.plu... ]
Matus Makovy updated TEIIDDES-2909:
-----------------------------------
Labels: release_notes (was: )
> NPE when deploying VDB via Designer if version is anything but 1
> ----------------------------------------------------------------
>
> Key: TEIIDDES-2909
> URL: https://issues.jboss.org/browse/TEIIDDES-2909
> Project: Teiid Designer
> Issue Type: Bug
> Components: VDB & Execution
> Affects Versions: 9.0.7
> Reporter: Debbie Steigner
> Assignee: Barry LaFond
> Labels: release_notes
> Fix For: 11.0.1
>
>
> If the Version is anything but 1 in the VDB editor in Designer 9.0.7, the below NPE is thrown in Designer, but the VDB is deployed successfully on the server.
> [1]
> !ENTRY org.teiid.designer.dqp.ui 4 0 2016-09-01 06:47:52.499
> !MESSAGE
> !STACK 0
> java.lang.NullPointerException
> at org.teiid.runtime.client.admin.ExecutionAdmin.doDeployVdb(ExecutionAdmin.java:240)
> at org.teiid.runtime.client.admin.ExecutionAdmin.deployVdb(ExecutionAdmin.java:181)
> at org.teiid.designer.runtime.TeiidServer.deployVdb(TeiidServer.java:618)
> at org.teiid.designer.runtime.ui.vdb.VdbDeployer.deploy(VdbDeployer.java:307)
> at org.teiid.designer.runtime.ui.actions.DeployVdbAction$1.run(DeployVdbAction.java:320)
> at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122)
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months
[JBoss JIRA] (TEIIDDES-3029) Import salesforce via Teiid connection doesn't work
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-3029?page=com.atlassian.jira.plu... ]
Matus Makovy updated TEIIDDES-3029:
-----------------------------------
Affects Version/s: 11.0.1
(was: 10.0.1)
> Import salesforce via Teiid connection doesn't work
> ---------------------------------------------------
>
> Key: TEIIDDES-3029
> URL: https://issues.jboss.org/browse/TEIIDDES-3029
> Project: Teiid Designer
> Issue Type: Bug
> Components: Import/Export
> Affects Versions: 11.0.1
> Environment: Fedora 24
> Reporter: Matej Kralik
> Priority: Blocker
> Attachments: schreenshot1.png
>
>
> When I wanted to import models from salesforce data source via Teiid connection importer, the Teiid importer shows me this error:
> {code:java}
> Error retrieving the Teiid DDL.
> Please check the logs for details...
> {code}
> In the error log is this event:
> java.io.IOException: java.util.concurrent.ExecutionException: Operation failed
> Stacktrace
> {code:java}
> org.teiid.adminapi.AdminComponentException: java.io.IOException: java.util.concurrent.ExecutionException: Operation failed
> at org.teiid.runtime.client.admin.v8.Admin8Factory$AdminImpl.getSchema(Admin8Factory.java:2076)
> at org.teiid.runtime.client.admin.ExecutionAdmin.getSchema(ExecutionAdmin.java:269)
> at org.teiid.designer.runtime.TeiidServer.getSchema(TeiidServer.java:800)
> at org.teiid.designer.runtime.importer.ImportManager.getSchema(ImportManager.java:258)
> at org.teiid.designer.teiidimporter.ui.wizard.TeiidImportManager.getDdl(TeiidImportManager.java:382)
> at org.teiid.designer.teiidimporter.ui.wizard.ShowDDLPage.setVisible(ShowDDLPage.java:337)
> at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1215)
> at org.eclipse.jface.wizard.WizardDialog.lambda$2(WizardDialog.java:1185)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
> at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1185)
> at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:876)
> at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:419)
> at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:618)
> at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:249)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5219)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1340)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4553)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:4143)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:818)
> at org.eclipse.jface.window.Window.open(Window.java:794)
> at org.eclipse.ui.internal.handlers.WizardHandler$Import.executeHandler(WizardHandler.java:158)
> at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:290)
> at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:295)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:90)
> 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:55)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:282)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:264)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
> at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.execute(HandlerServiceHandler.java:152)
> at org.eclipse.core.commands.Command.executeWithChecks(Command.java:494)
> at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:488)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:210)
> at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:353)
> at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:155)
> at org.eclipse.ui.internal.actions.CommandAction.run(CommandAction.java:165)
> at org.eclipse.ui.actions.ImportResourcesAction.run(ImportResourcesAction.java:99)
> at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:167)
> at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:565)
> at org.eclipse.jface.action.ActionContributionItem.lambda$4(ActionContributionItem.java:397)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5219)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1340)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4553)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:4143)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1121)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1022)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:150)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:687)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:604)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:148)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:138)
> 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:673)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:610)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1519)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1492)
> Caused by: java.io.IOException: java.util.concurrent.ExecutionException: Operation 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.teiid.runtime.client.admin.v8.Admin8Factory$AdminImpl.getSchema(Admin8Factory.java:2070)
> ... 70 more
> Caused by: java.util.concurrent.ExecutionException: Operation failed
> at org.jboss.threads.AsyncFutureTask.operationFailed(AsyncFutureTask.java:74)
> at org.jboss.threads.AsyncFutureTask.get(AsyncFutureTask.java:268)
> at org.jboss.as.controller.client.impl.AbstractDelegatingAsyncFuture.get(AbstractDelegatingAsyncFuture.java:57)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
> ... 72 more
> Caused by: java.io.InvalidObjectException: Invalid type character 'S'
> at org.jboss.dmr.ModelNode.readExternal(ModelNode.java:1538)
> at org.jboss.dmr.ObjectModelValue.<init>(ObjectModelValue.java:62)
> at org.jboss.dmr.ModelNode.readExternal(ModelNode.java:1531)
> at org.jboss.as.controller.client.impl.AbstractModelControllerClient$1.handleRequest(AbstractModelControllerClient.java:196)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:270)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleRequest(AbstractMessageHandler.java:235)
> at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:114)
> at org.jboss.as.protocol.mgmt.ManagementChannelReceiver$1.handleMessage(ManagementChannelReceiver.java:58)
> at org.jboss.as.protocol.mgmt.ManagementChannelReceiver.handleMessage(ManagementChannelReceiver.java:86)
> at org.jboss.remoting3.remote.RemoteConnectionChannel$5.run(RemoteConnectionChannel.java:452)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at java.lang.Thread.run(Thread.java:745)
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 2 months