[JBoss JIRA] (TEIIDDES-2274) Row-based Security creates incorrect permission
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2274?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2274:
----------------------------------------
The Teiid documentation: https://docs.jboss.org/author/display/TEIID/XML+Definition appears to allow both *table* and *column* targets as shown in the snippets below, and Designer currently only allows targeting a *column*
{code:xml}
<permission>
<resource-name>modelName.tblName.column1</resource-name>
<mask>CASE WHEN column1=user() THEN column1 END</mask>
</permission>
{code}
{code:xml}
<permission>
<resource-name>modelName.tblName.column1</resource-name>
<condition>column2='x'</condition>
<mask order="1">column1</mask>
</permission>
{code}
> Row-based Security creates incorrect permission
> -----------------------------------------------
>
> Key: TEIIDDES-2274
> URL: https://issues.jboss.org/browse/TEIIDDES-2274
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Modeling, VDB & Execution
> Affects Versions: 8.3.3
> Environment: OSX 10.9.4, Java 1.7.0_25. However, this bug has also been verified on a RHEL 7 instance as well.
> Reporter: Blaine Mincey
> Labels: designer, teiid
>
> In modeling a VDB, when adding a condition for row-based security, an incorrect permission is created. For example, if using the Designer to select a column, the following condition is added:
> <permission>
> <resource-name>AccountsView.CUSTOMER.STATE</resource-name>
> <condition constraint="true"><> 'New York'</condition>
> </permission>.
> In order for row-based security to work, the VDB.xml needs to be edited to be the following:
> <permission>
> <resource-name>AccountsView.CUSTOMER</resource-name>
> <condition constraint="true">STATE <> 'New York'</condition>
> </permission>
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2274) Row-based Security creates incorrect permission
by Blaine Mincey (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2274?page=com.atlassian.jira.plu... ]
Blaine Mincey updated TEIIDDES-2274:
------------------------------------
Workaround Description:
The VDB.xml can be edited to read as follows:
<permission>
<resource-name>AccountsView.CUSTOMER</resource-name>
<condition constraint="true">STATE <> 'New York'</condition>
</permission>
was:
The VDB.xml can be edited to read as follows:
<permission>
<resource-name>AccountsView.CUSTOMER</resource-name>
<condition constraint="true">STATE <> 'New York'</condition></permission>
> Row-based Security creates incorrect permission
> -----------------------------------------------
>
> Key: TEIIDDES-2274
> URL: https://issues.jboss.org/browse/TEIIDDES-2274
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Modeling, VDB & Execution
> Affects Versions: 8.3.3
> Environment: OSX 10.9.4, Java 1.7.0_25. However, this bug has also been verified on a RHEL 7 instance as well.
> Reporter: Blaine Mincey
> Labels: designer, teiid
>
> In modeling a VDB, when adding a condition for row-based security, an incorrect permission is created. For example, if using the Designer to select a column, the following condition is added:
> <permission>
> <resource-name>AccountsView.CUSTOMER.STATE</resource-name>
> <condition constraint="true"><> 'New York'</condition>
> </permission>.
> In order for row-based security to work, the VDB.xml needs to be edited to be the following:
> <permission>
> <resource-name>AccountsView.CUSTOMER</resource-name>
> <condition constraint="true">STATE <> 'New York'</condition></permission>
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2274) Row-based Security creates incorrect permission
by Blaine Mincey (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2274?page=com.atlassian.jira.plu... ]
Blaine Mincey updated TEIIDDES-2274:
------------------------------------
Description:
In modeling a VDB, when adding a condition for row-based security, an incorrect permission is created. For example, if using the Designer to select a column, the following condition is added:
<permission>
<resource-name>AccountsView.CUSTOMER.STATE</resource-name>
<condition constraint="true"><> 'New York'</condition>
</permission>.
In order for row-based security to work, the VDB.xml needs to be edited to be the following:
<permission>
<resource-name>AccountsView.CUSTOMER</resource-name>
<condition constraint="true">STATE <> 'New York'</condition>
</permission>
was:
In modeling a VDB, when adding a condition for row-based security, an incorrect permission is created. For example, if using the Designer to select a column, the following condition is added:
<permission>
<resource-name>AccountsView.CUSTOMER.STATE</resource-name>
<condition constraint="true"><> 'New York'</condition>
</permission>.
In order for row-based security to work, the VDB.xml needs to be edited to be the following:
<permission>
<resource-name>AccountsView.CUSTOMER</resource-name>
<condition constraint="true">STATE <> 'New York'</condition></permission>
> Row-based Security creates incorrect permission
> -----------------------------------------------
>
> Key: TEIIDDES-2274
> URL: https://issues.jboss.org/browse/TEIIDDES-2274
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Modeling, VDB & Execution
> Affects Versions: 8.3.3
> Environment: OSX 10.9.4, Java 1.7.0_25. However, this bug has also been verified on a RHEL 7 instance as well.
> Reporter: Blaine Mincey
> Labels: designer, teiid
>
> In modeling a VDB, when adding a condition for row-based security, an incorrect permission is created. For example, if using the Designer to select a column, the following condition is added:
> <permission>
> <resource-name>AccountsView.CUSTOMER.STATE</resource-name>
> <condition constraint="true"><> 'New York'</condition>
> </permission>.
> In order for row-based security to work, the VDB.xml needs to be edited to be the following:
> <permission>
> <resource-name>AccountsView.CUSTOMER</resource-name>
> <condition constraint="true">STATE <> 'New York'</condition>
> </permission>
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2274) Row-based Security creates incorrect permission
by Blaine Mincey (JIRA)
Blaine Mincey created TEIIDDES-2274:
---------------------------------------
Summary: Row-based Security creates incorrect permission
Key: TEIIDDES-2274
URL: https://issues.jboss.org/browse/TEIIDDES-2274
Project: Teiid Designer
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Modeling, VDB & Execution
Affects Versions: 8.3.3
Environment: OSX 10.9.4, Java 1.7.0_25. However, this bug has also been verified on a RHEL 7 instance as well.
Reporter: Blaine Mincey
In modeling a VDB, when adding a condition for row-based security, an incorrect permission is created. For example, if using the Designer to select a column, the following condition is added:
<permission>
<resource-name>AccountsView.CUSTOMER.STATE</resource-name>
<condition constraint="true"><> 'New York'</condition>
</permission>.
In order for row-based security to work, the VDB.xml needs to be edited to be the following:
<permission>
<resource-name>AccountsView.CUSTOMER</resource-name>
<condition constraint="true">STATE <> 'New York'</condition></permission>
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2273) Upgrade Teiid client to Teiid 8.8 source code
by Barry LaFond (JIRA)
Barry LaFond created TEIIDDES-2273:
--------------------------------------
Summary: Upgrade Teiid client to Teiid 8.8 source code
Key: TEIIDDES-2273
URL: https://issues.jboss.org/browse/TEIIDDES-2273
Project: Teiid Designer
Issue Type: Task
Security Level: Public (Everyone can see)
Components: Teiid Integration
Affects Versions: 8.6
Reporter: Barry LaFond
Assignee: Paul Richardson
Fix For: 8.6
Latest Teiid release is 8.8 Final. Need to upgrade & test with that version source.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2229) Merge various fixes from master into 8.5.1
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2229?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-2229:
-----------------------------------
Description:
*Candidates*
* TEIIDDES-1829 - Add Dynamic Parameter Capability to REST Connection Profile
* TEIIDDES-2139 - 2 Connections to same VDB in JBDS seem to share one password
* TEIIDDES-2188 - Move the REST Importer out of the XML Importer and into a Separate Importer Option]
* TEIIDDES-2190 - Update the Generated Transformation for REST to Support Dynamic Parameters
* TEIIDDES-2218 - JBossWS-CXF/RestEasy WAR menu options are impl specific
* TEIIDDES-2224 - web service returns 500 when concurrent access
* TEIIDDES-2237 - Server credentials for multiple Teiid instances sharing password
* TEIIDDES-2245 - Error Assigning WS CP to source model
* TEIIDDES-1882 - Add Support for JSON Based Web Service Importing
*Completed Upstream*
TEIIDDES-#### <title>
*Merged*
* TEIIDDES-2110 Update 8.5 Documentation
* TEIIDDES-2120 unable to reference same name .xsd when saving .vdb
* TEIIDDES-2150 JBDS keeps selecting all operations in "Create relational model from WS" dialogue
* TEIIDDES-2151 Create relational model from WS (SOAP) using default procedures generates both models in one subdirectory
* TEIIDDES-2179 Teiid connection importer choice of dynamic-vdb name needs to be unique
* TEIIDDES-2198 Virtual procedure transformation not revalidated after changing parameter datatype
* TEIIDDES-2203 Deletion of invalid (columnless) models causes NPE
* TEIIDDES-2205 Remove table name error validation for names that include '.' delimiter
* TEIIDDES-2208 Column layout issue in RelationalEditorPanel
* TEIIDDES-2212 Virtual procedures with function == TRUE still validates SQL transformations
* TEIIDDES-2216 TEIID30181 HEADER entry missing for column name id in Unknown
* TEIIDDES-2227 After deleting connection profile, action Guides -> Generate relational models from WSDL throws an exception
* TEIIDDES-2228 Action "Generate relational models from WSDL(Guides)" ignores preselected Connection profile
* TEIIDDES-2235 Preview uses Pool Name instead of JNDI name
* TEIIDDES-2236 An error occurred while attempting to analyse the teiid instance's translator: salesforce
* TEIIDDES-2240 Handling of fixed-length datatypes is not handled consistently
* TEIIDDES-2242 If default Teiid runtime is set to version < 8.0 check VDB and warn user if VDB was created for >= 8.0
* TEIIDDES-2254 rename View Model causes issues
* TEIIDDES-2255 Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
* TEIIDDES-2257 Create VDB DataSource Dialog Enhancements
* TEIIDDES-2260 Teiid Designer doesn't clean up vdb.xml properly (Data Roles - conditions)
* TEIIDDES-2266 Unexpected internal error near index 1 on Windows
was:
*Candidates*
* TEIIDDES-1829 - Add Dynamic Parameter Capability to REST Connection Profile
* TEIIDDES-2139 - 2 Connections to same VDB in JBDS seem to share one password
* TEIIDDES-2188 - Move the REST Importer out of the XML Importer and into a Separate Importer Option]
* TEIIDDES-2190 - Update the Generated Transformation for REST to Support Dynamic Parameters
* TEIIDDES-2218 - JBossWS-CXF/RestEasy WAR menu options are impl specific
* TEIIDDES-2224 - web service returns 500 when concurrent access
* TEIIDDES-2237 - Server credentials for multiple Teiid instances sharing password
* TEIIDDES-2245 - Error Assigning WS CP to source model
* TEIIDDES-1882 - Add Support for JSON Based Web Service Importing
*Completed Upstream*
TEIIDDES-#### <title>
*Merged*
* TEIIDDES-2110 Update 8.5 Documentation
* TEIIDDES-2120 unable to reference same name .xsd when saving .vdb
* TEIIDDES-2150 JBDS keeps selecting all operations in "Create relational model from WS" dialogue
* TEIIDDES-2151 Create relational model from WS (SOAP) using default procedures generates both models in one subdirectory
* TEIIDDES-2179 Teiid connection importer choice of dynamic-vdb name needs to be unique
* TEIIDDES-2198 Virtual procedure transformation not revalidated after changing parameter datatype
* TEIIDDES-2203 Deletion of invalid (columnless) models causes NPE
* TEIIDDES-2205 Remove table name error validation for names that include '.' delimiter
* TEIIDDES-2208 Column layout issue in RelationalEditorPanel
* TEIIDDES-2212 Virtual procedures with function == TRUE still validates SQL transformations
* TEIIDDES-2216 TEIID30181 HEADER entry missing for column name id in Unknown
* TEIIDDES-2227 After deleting connection profile, action Guides -> Generate relational models from WSDL throws an exception
* TEIIDDES-2228 Action "Generate relational models from WSDL(Guides)" ignores preselected Connection profile
* TEIIDDES-2235 Preview uses Pool Name instead of JNDI name
* TEIIDDES-2236 An error occurred while attempting to analyse the teiid instance's translator: salesforce
* TEIIDDES-2240 Handling of fixed-length datatypes is not handled consistently
* TEIIDDES-2242 If default Teiid runtime is set to version < 8.0 check VDB and warn user if VDB was created for >= 8.0
* TEIIDDES-2254 rename View Model causes issues
* TEIIDDES-2257 Create VDB DataSource Dialog Enhancements
* TEIIDDES-2260 Teiid Designer doesn't clean up vdb.xml properly (Data Roles - conditions)
* TEIIDDES-2266 Unexpected internal error near index 1 on Windows
> Merge various fixes from master into 8.5.1
> ------------------------------------------
>
> Key: TEIIDDES-2229
> URL: https://issues.jboss.org/browse/TEIIDDES-2229
> Project: Teiid Designer
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: Patch Release
> Affects Versions: 8.5.1
> Reporter: Ted Jones
> Assignee: Johnathon Lee
> Priority: Blocker
> Fix For: 8.5.1
>
>
> *Candidates*
> * TEIIDDES-1829 - Add Dynamic Parameter Capability to REST Connection Profile
> * TEIIDDES-2139 - 2 Connections to same VDB in JBDS seem to share one password
> * TEIIDDES-2188 - Move the REST Importer out of the XML Importer and into a Separate Importer Option]
> * TEIIDDES-2190 - Update the Generated Transformation for REST to Support Dynamic Parameters
> * TEIIDDES-2218 - JBossWS-CXF/RestEasy WAR menu options are impl specific
> * TEIIDDES-2224 - web service returns 500 when concurrent access
> * TEIIDDES-2237 - Server credentials for multiple Teiid instances sharing password
> * TEIIDDES-2245 - Error Assigning WS CP to source model
> * TEIIDDES-1882 - Add Support for JSON Based Web Service Importing
> *Completed Upstream*
> TEIIDDES-#### <title>
> *Merged*
> * TEIIDDES-2110 Update 8.5 Documentation
> * TEIIDDES-2120 unable to reference same name .xsd when saving .vdb
> * TEIIDDES-2150 JBDS keeps selecting all operations in "Create relational model from WS" dialogue
> * TEIIDDES-2151 Create relational model from WS (SOAP) using default procedures generates both models in one subdirectory
> * TEIIDDES-2179 Teiid connection importer choice of dynamic-vdb name needs to be unique
> * TEIIDDES-2198 Virtual procedure transformation not revalidated after changing parameter datatype
> * TEIIDDES-2203 Deletion of invalid (columnless) models causes NPE
> * TEIIDDES-2205 Remove table name error validation for names that include '.' delimiter
> * TEIIDDES-2208 Column layout issue in RelationalEditorPanel
> * TEIIDDES-2212 Virtual procedures with function == TRUE still validates SQL transformations
> * TEIIDDES-2216 TEIID30181 HEADER entry missing for column name id in Unknown
> * TEIIDDES-2227 After deleting connection profile, action Guides -> Generate relational models from WSDL throws an exception
> * TEIIDDES-2228 Action "Generate relational models from WSDL(Guides)" ignores preselected Connection profile
> * TEIIDDES-2235 Preview uses Pool Name instead of JNDI name
> * TEIIDDES-2236 An error occurred while attempting to analyse the teiid instance's translator: salesforce
> * TEIIDDES-2240 Handling of fixed-length datatypes is not handled consistently
> * TEIIDDES-2242 If default Teiid runtime is set to version < 8.0 check VDB and warn user if VDB was created for >= 8.0
> * TEIIDDES-2254 rename View Model causes issues
> * TEIIDDES-2255 Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
> * TEIIDDES-2257 Create VDB DataSource Dialog Enhancements
> * TEIIDDES-2260 Teiid Designer doesn't clean up vdb.xml properly (Data Roles - conditions)
> * TEIIDDES-2266 Unexpected internal error near index 1 on Windows
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2268) NPE An internal error occurred during: "Loading Core provider".
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2268?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2268:
----------------------------------------
Might be a Teiid driver version compatiblity issue.
Check your *Preferences > Data Management > Connectivity > Driver Definitions* panel for Teiid Driver instances. You could try deleting existing drivers, then try executing a VDB which should generate a compatible driver.
> NPE An internal error occurred during: "Loading Core provider".
> ---------------------------------------------------------------
>
> Key: TEIIDDES-2268
> URL: https://issues.jboss.org/browse/TEIIDDES-2268
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Datatools Integration
> Affects Versions: 8.5, 8.6
> Environment: windows 7, eclipse kepler 4.3.2, teiid designer 8.5/8.6
> Reporter: Greg MacKinnon
>
> Here is a representative stack trace. This had been observed in teiid designer 8.5. I fetched the 8.6 teiid designer code, built and installed in on eclipse to workaround an AuthenticationType issue and have observed this NPE there as well.
>
> !ENTRY org.eclipse.core.jobs 4 2 2014-07-24 15:34:22.685
> !MESSAGE An internal error occurred during: "Loading Core provider".
> !STACK 0
> java.lang.NullPointerException
> at org.eclipse.datatools.connectivity.sqm.internal.core.definition.isAuthorizationIdentifierSupported(DatabaseDefinitionImpl.java:2014)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.vnode.ServerExplorerVNodeContentProviderNav.displayDatabaseChildren(ServerExplorerVNodeContentProviderNav.java:391)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractOnDemandContentProviderNav.getChildren(AbstractOnDemandContentProviderNav.java:116)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractOnDemandContentProviderNav.getChildren(AbstractOnDemandContentProviderNav.java:239)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractLayoutProviderNav.getChildren(AbstractLayoutProviderNav.java:85)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.impl.ServerExplorerContentProviderNav.load(ServerExplorerContentProviderNav.java:153)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.loading.LoadingJob.run(LoadingJob.java:43)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53)
>
> This occurs right after a call is made to load the definition.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2268) NPE An internal error occurred during: "Loading Core provider".
by Greg MacKinnon (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2268?page=com.atlassian.jira.plu... ]
Greg MacKinnon commented on TEIIDDES-2268:
------------------------------------------
The message '!MESSAGE An internal error occurred during: "Loading Core provider"' and the shown stack trace occur when trying to expand a VDB in the designer's Data Source Explorer.
> NPE An internal error occurred during: "Loading Core provider".
> ---------------------------------------------------------------
>
> Key: TEIIDDES-2268
> URL: https://issues.jboss.org/browse/TEIIDDES-2268
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Datatools Integration
> Affects Versions: 8.5, 8.6
> Environment: windows 7, eclipse kepler 4.3.2, teiid designer 8.5/8.6
> Reporter: Greg MacKinnon
>
> Here is a representative stack trace. This had been observed in teiid designer 8.5. I fetched the 8.6 teiid designer code, built and installed in on eclipse to workaround an AuthenticationType issue and have observed this NPE there as well.
>
> !ENTRY org.eclipse.core.jobs 4 2 2014-07-24 15:34:22.685
> !MESSAGE An internal error occurred during: "Loading Core provider".
> !STACK 0
> java.lang.NullPointerException
> at org.eclipse.datatools.connectivity.sqm.internal.core.definition.isAuthorizationIdentifierSupported(DatabaseDefinitionImpl.java:2014)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.vnode.ServerExplorerVNodeContentProviderNav.displayDatabaseChildren(ServerExplorerVNodeContentProviderNav.java:391)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractOnDemandContentProviderNav.getChildren(AbstractOnDemandContentProviderNav.java:116)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractOnDemandContentProviderNav.getChildren(AbstractOnDemandContentProviderNav.java:239)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractLayoutProviderNav.getChildren(AbstractLayoutProviderNav.java:85)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.impl.ServerExplorerContentProviderNav.load(ServerExplorerContentProviderNav.java:153)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.loading.LoadingJob.run(LoadingJob.java:43)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53)
>
> This occurs right after a call is made to load the definition.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months
[JBoss JIRA] (TEIIDDES-2268) NPE An internal error occurred during: "Loading Core provider".
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2268?page=com.atlassian.jira.plu... ]
Barry LaFond commented on TEIIDDES-2268:
----------------------------------------
We haven't had any real issues with connecting to a VDB via Datatools using the Teiid JDBC connection.
Are you saying that the error *!MESSAGE An internal error occurred during: "Loading Core provider".* above was trying to load the Teiid Driver in the New Connection Profile wizard?
> NPE An internal error occurred during: "Loading Core provider".
> ---------------------------------------------------------------
>
> Key: TEIIDDES-2268
> URL: https://issues.jboss.org/browse/TEIIDDES-2268
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Datatools Integration
> Affects Versions: 8.5, 8.6
> Environment: windows 7, eclipse kepler 4.3.2, teiid designer 8.5/8.6
> Reporter: Greg MacKinnon
>
> Here is a representative stack trace. This had been observed in teiid designer 8.5. I fetched the 8.6 teiid designer code, built and installed in on eclipse to workaround an AuthenticationType issue and have observed this NPE there as well.
>
> !ENTRY org.eclipse.core.jobs 4 2 2014-07-24 15:34:22.685
> !MESSAGE An internal error occurred during: "Loading Core provider".
> !STACK 0
> java.lang.NullPointerException
> at org.eclipse.datatools.connectivity.sqm.internal.core.definition.isAuthorizationIdentifierSupported(DatabaseDefinitionImpl.java:2014)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.vnode.ServerExplorerVNodeContentProviderNav.displayDatabaseChildren(ServerExplorerVNodeContentProviderNav.java:391)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractOnDemandContentProviderNav.getChildren(AbstractOnDemandContentProviderNav.java:116)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractOnDemandContentProviderNav.getChildren(AbstractOnDemandContentProviderNav.java:239)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.layout.AbstractLayoutProviderNav.getChildren(AbstractLayoutProviderNav.java:85)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.providers.content.impl.ServerExplorerContentProviderNav.load(ServerExplorerContentProviderNav.java:153)
> at org.eclipse.datatools.connectivity.sqm.server.internal.ui.explorer.loading.LoadingJob.run(LoadingJob.java:43)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53)
>
> This occurs right after a call is made to load the definition.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 2 months