[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2153?page=com.atlassian.jira.plu... ]
Barry LaFond edited comment on TEIIDDES-2153 at 5/12/14 9:27 AM:
-----------------------------------------------------------------
Exception being thrown when next page being made visible:
{code}
java.lang.NullPointerException
at org.teiid.query.proc.wsdl.WsdlRequestProcedureHelper.getSQLStatement(WsdlRequestProcedureHelper.java:265)
at org.teiid.runtime.client.proc.ProcedureService.getSQLStatement(ProcedureService.java:291)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.RequestInfo.getSqlString(RequestInfo.java:74)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.updateSqlText(OperationsDetailsPage.java:592)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.notifyOperationChanged(OperationsDetailsPage.java:179)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.selectComboItem(OperationsDetailsPage.java:566)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.setVisible(OperationsDetailsPage.java:722)
at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1259)
at org.eclipse.jface.wizard.WizardDialog.access$4(WizardDialog.java:1238)
at org.eclipse.jface.wizard.WizardDialog$8.run(WizardDialog.java:1227)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1225)
at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:915)
at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:428)
{code}
I added a null check in WsdlRequestProcedureHelper (after line 264).... and the next page is displayed correctly.
{code}
Map<String, String> nsMap = (!(requestInfo.isMessageServiceMode()) ? getNamespaceString(parts) : null);
if( nsMap == null ) {
nsMap = new HashMap<String, String>();
}
String nsString = nsMap.get(NSSTRING);
String nsPrefix = nsMap.get(NSPREFIX);
{code}
was (Author: blafond):
Exception being thrown when next page being made visible:
{code}
java.lang.NullPointerException
at org.teiid.query.proc.wsdl.WsdlRequestProcedureHelper.getSQLStatement(WsdlRequestProcedureHelper.java:265)
at org.teiid.runtime.client.proc.ProcedureService.getSQLStatement(ProcedureService.java:291)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.RequestInfo.getSqlString(RequestInfo.java:74)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.updateSqlText(OperationsDetailsPage.java:592)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.notifyOperationChanged(OperationsDetailsPage.java:179)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.selectComboItem(OperationsDetailsPage.java:566)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.setVisible(OperationsDetailsPage.java:722)
at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1259)
at org.eclipse.jface.wizard.WizardDialog.access$4(WizardDialog.java:1238)
at org.eclipse.jface.wizard.WizardDialog$8.run(WizardDialog.java:1227)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1225)
at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:915)
at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:428)
{code}
> Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> --------------------------------------------------------------------------------
>
> Key: TEIIDDES-2153
> URL: https://issues.jboss.org/browse/TEIIDDES-2153
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.2
> Reporter: Matus Makovy
> Assignee: Ted Jones
> Priority: Blocker
> Attachments: bug.png
>
>
> Description of problem:
> When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
> How reproducible:
> 1. Guides -> Generate relational model from WSDL
> 2. Select some Connection Profile and some Operations
> 3. Select Service Mode: MESSAGE, click Next>
> 4. Leave default settings and click Next> again
> 5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
> [see attachment]
> JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2153?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2153:
----------------------------------------
Exception being thrown when next page being made visible:
{code}
java.lang.NullPointerException
at org.teiid.query.proc.wsdl.WsdlRequestProcedureHelper.getSQLStatement(WsdlRequestProcedureHelper.java:265)
at org.teiid.runtime.client.proc.ProcedureService.getSQLStatement(ProcedureService.java:291)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.RequestInfo.getSqlString(RequestInfo.java:74)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.updateSqlText(OperationsDetailsPage.java:592)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.notifyOperationChanged(OperationsDetailsPage.java:179)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.selectComboItem(OperationsDetailsPage.java:566)
at org.teiid.designer.modelgenerator.wsdl.ui.wizards.soap.OperationsDetailsPage.setVisible(OperationsDetailsPage.java:722)
at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1259)
at org.eclipse.jface.wizard.WizardDialog.access$4(WizardDialog.java:1238)
at org.eclipse.jface.wizard.WizardDialog$8.run(WizardDialog.java:1227)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1225)
at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:915)
at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:428)
{code}
> Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> --------------------------------------------------------------------------------
>
> Key: TEIIDDES-2153
> URL: https://issues.jboss.org/browse/TEIIDDES-2153
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.2
> Reporter: Matus Makovy
> Assignee: Ted Jones
> Priority: Blocker
> Attachments: bug.png
>
>
> Description of problem:
> When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
> How reproducible:
> 1. Guides -> Generate relational model from WSDL
> 2. Select some Connection Profile and some Operations
> 3. Select Service Mode: MESSAGE, click Next>
> 4. Leave default settings and click Next> again
> 5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
> [see attachment]
> JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by Ted Jones (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2153?page=com.atlassian.jira.plu... ]
Ted Jones reassigned TEIIDDES-2153:
-----------------------------------
Assignee: Ted Jones (was: Barry LaFond)
> Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> --------------------------------------------------------------------------------
>
> Key: TEIIDDES-2153
> URL: https://issues.jboss.org/browse/TEIIDDES-2153
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.2
> Reporter: Matus Makovy
> Assignee: Ted Jones
> Priority: Blocker
> Attachments: bug.png
>
>
> Description of problem:
> When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
> How reproducible:
> 1. Guides -> Generate relational model from WSDL
> 2. Select some Connection Profile and some Operations
> 3. Select Service Mode: MESSAGE, click Next>
> 4. Leave default settings and click Next> again
> 5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
> [see attachment]
> JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2148) missing rest properties (method etc)
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2148?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2148:
----------------------------------------
The Properties view's content is based on workspace selection. The selected object's display name/type is shown in the lower status bar at the bottom left of the workbench view (below the properties view).
Depending on how you open the Tranformation diagram, the selection may or may not have changed.
Verify that the Selection Status display starts with *Procedure: <model name>/<procedure name>*
> missing rest properties (method etc)
> ------------------------------------
>
> Key: TEIIDDES-2148
> URL: https://issues.jboss.org/browse/TEIIDDES-2148
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.5
> Environment: windows
> Reporter: luca gioppo
> Labels: rest
>
> After creating the procedure with the wizard there are no more the properties aviable in the usual place, have been asked to enter them but not shown afterwards.
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by Van Halbert (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2153?page=com.atlassian.jira.plu... ]
Van Halbert updated TEIIDDES-2153:
----------------------------------
Assignee: Barry LaFond
> Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> --------------------------------------------------------------------------------
>
> Key: TEIIDDES-2153
> URL: https://issues.jboss.org/browse/TEIIDDES-2153
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.2
> Reporter: Matus Makovy
> Assignee: Barry LaFond
> Priority: Blocker
> Attachments: bug.png
>
>
> Description of problem:
> When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
> How reproducible:
> 1. Guides -> Generate relational model from WSDL
> 2. Select some Connection Profile and some Operations
> 3. Select Service Mode: MESSAGE, click Next>
> 4. Leave default settings and click Next> again
> 5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
> [see attachment]
> JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2153?page=com.atlassian.jira.plu... ]
RH Bugzilla Integration updated TEIIDDES-2153:
----------------------------------------------
Bugzilla Update: Perform
Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=1096741
> Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> --------------------------------------------------------------------------------
>
> Key: TEIIDDES-2153
> URL: https://issues.jboss.org/browse/TEIIDDES-2153
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.2
> Reporter: Matus Makovy
> Priority: Blocker
> Attachments: bug.png
>
>
> Description of problem:
> When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
> How reproducible:
> 1. Guides -> Generate relational model from WSDL
> 2. Select some Connection Profile and some Operations
> 3. Select Service Mode: MESSAGE, click Next>
> 4. Leave default settings and click Next> again
> 5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
> [see attachment]
> JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2153?page=com.atlassian.jira.plu... ]
Matus Makovy updated TEIIDDES-2153:
-----------------------------------
Attachment: bug.png
Step 5
> Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> --------------------------------------------------------------------------------
>
> Key: TEIIDDES-2153
> URL: https://issues.jboss.org/browse/TEIIDDES-2153
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.2
> Reporter: Matus Makovy
> Attachments: bug.png
>
>
> Description of problem:
> When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
> How reproducible:
> 1. Guides -> Generate relational model from WSDL
> 2. Select some Connection Profile and some Operations
> 3. Select Service Mode: MESSAGE, click Next>
> 4. Leave default settings and click Next> again
> 5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
> [see attachment]
> JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2153?page=com.atlassian.jira.plu... ]
Matus Makovy updated TEIIDDES-2153:
-----------------------------------
Priority: Blocker (was: Major)
> Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> --------------------------------------------------------------------------------
>
> Key: TEIIDDES-2153
> URL: https://issues.jboss.org/browse/TEIIDDES-2153
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.3.2
> Reporter: Matus Makovy
> Priority: Blocker
> Attachments: bug.png
>
>
> Description of problem:
> When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
> How reproducible:
> 1. Guides -> Generate relational model from WSDL
> 2. Select some Connection Profile and some Operations
> 3. Select Service Mode: MESSAGE, click Next>
> 4. Leave default settings and click Next> again
> 5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
> [see attachment]
> JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2153) Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
by Matus Makovy (JIRA)
Matus Makovy created TEIIDDES-2153:
--------------------------------------
Summary: Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
Key: TEIIDDES-2153
URL: https://issues.jboss.org/browse/TEIIDDES-2153
Project: Teiid Designer
Issue Type: Bug
Affects Versions: 8.3.2
Reporter: Matus Makovy
Attachments: bug.png
Description of problem:
When I select Service Mode MESSAGE during the proccess of creating the relational model from SOAP WS it gets stuck and can't be finished.
How reproducible:
1. Guides -> Generate relational model from WSDL
2. Select some Connection Profile and some Operations
3. Select Service Mode: MESSAGE, click Next>
4. Leave default settings and click Next> again
5. Nothing changes on the window only new error message in the top section of the window is displayed "No columns are defined for the response procedure result set for the operation: ... " and both buttons "Next>" and "Finish" are disabled
[see attachment]
JBDS 7.1.1.GA + TeiidDesigner 8.3.2
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months
[JBoss JIRA] (TEIIDDES-2148) missing rest properties (method etc)
by luca gioppo (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2148?page=com.atlassian.jira.plu... ]
luca gioppo commented on TEIIDDES-2148:
---------------------------------------
After closing and reopening the project seems that the properties are there.
But they disappear when you are in the transformation diagram
That is strange, there should no reason for this behaviour.
Luca
> missing rest properties (method etc)
> ------------------------------------
>
> Key: TEIIDDES-2148
> URL: https://issues.jboss.org/browse/TEIIDDES-2148
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 8.5
> Environment: windows
> Reporter: luca gioppo
> Labels: rest
>
> After creating the procedure with the wizard there are no more the properties aviable in the usual place, have been asked to enter them but not shown afterwards.
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 8 months