[JBoss JIRA] (TEIIDDES-2257) Create VDB DataSource Dialog Enhancements
by Ramesh Reddy (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2257?page=com.atlassian.jira.plu... ]
Ramesh Reddy updated TEIIDDES-2257:
-----------------------------------
Attachment: ds.png
> Create VDB DataSource Dialog Enhancements
> -----------------------------------------
>
> Key: TEIIDDES-2257
> URL: https://issues.jboss.org/browse/TEIIDDES-2257
> Project: Teiid Designer
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: Usability
> Reporter: Ramesh Reddy
> Attachments: ds.png
>
>
> 1) The dialog shows "OK" and "Cancel" buttons, they need to be "yes" or "no" buttons.
> 2) If the data source is already available in server, then do not ask the user if they want to create it again.
> Even better is, ask on the vdb-explorer window to enter (pre-fill) the JNDI name, with a check-box to create or not, rather than asking at later time. No annoying pop-up dialog.
> Plus Points: To be useful, provide right click on VDB in server panel and create a Data source.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2257) Create VDB DataSource Dialog Enhancements
by Ramesh Reddy (JIRA)
Ramesh Reddy created TEIIDDES-2257:
--------------------------------------
Summary: Create VDB DataSource Dialog Enhancements
Key: TEIIDDES-2257
URL: https://issues.jboss.org/browse/TEIIDDES-2257
Project: Teiid Designer
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: Usability
Reporter: Ramesh Reddy
1) The dialog shows "OK" and "Cancel" buttons, they need to be "yes" or "no" buttons.
2) If the data source is already available in server, then do not ask the user if they want to create it again.
Even better is, ask on the vdb-explorer window to enter (pre-fill) the JNDI name, with a check-box to create or not, rather than asking at later time. No annoying pop-up dialog.
Plus Points: To be useful, provide right click on VDB in server panel and create a Data source.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2256) Confusing data type "integer" and "int"
by Ramesh Reddy (JIRA)
Ramesh Reddy created TEIIDDES-2256:
--------------------------------------
Summary: Confusing data type "integer" and "int"
Key: TEIIDDES-2256
URL: https://issues.jboss.org/browse/TEIIDDES-2256
Project: Teiid Designer
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Reporter: Ramesh Reddy
I understand that
"integer" maps to "xs:biginteger"
"int" maps "xs:long"
How they are confusing when there is already one available for biginteger. Also the Table creation wizard does not provide option to to select "int". When user chooses "integer" it often is "int".
This confusion needs to be resolved. IMO "integer" can be removed, however I am not sure how it effects data type system
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2255) Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
by hisao furuichi (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2255?page=com.atlassian.jira.plu... ]
hisao furuichi updated TEIIDDES-2255:
-------------------------------------
Description:
If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
* Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
Additional info:
In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308(tag 8.3.3). I think following code will solve this issue.
{noformat}
SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
{noformat}
was:
If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
* Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
Additional info:
In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308. I think following code will solve this issue.
{noformat}
SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
{noformat}
> Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
> -----------------------------------------------------------------------
>
> Key: TEIIDDES-2255
> URL: https://issues.jboss.org/browse/TEIIDDES-2255
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Editors
> Affects Versions: 8.3, 8.4
> Environment: JVM's local is not English (ex. ja)
> Reporter: hisao furuichi
>
> If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
> * Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
> Additional info:
> In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308(tag 8.3.3). I think following code will solve this issue.
> {noformat}
> SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2255) Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
by hisao furuichi (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2255?page=com.atlassian.jira.plu... ]
hisao furuichi updated TEIIDDES-2255:
-------------------------------------
Description:
If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
{noformat}
Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
{noformat}
Additional info:
In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308(tag 8.3.3). I think following code will solve this issue.
{noformat}
SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
{noformat}
was:
If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
* Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
Additional info:
In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308(tag 8.3.3). I think following code will solve this issue.
{noformat}
SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
{noformat}
> Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
> -----------------------------------------------------------------------
>
> Key: TEIIDDES-2255
> URL: https://issues.jboss.org/browse/TEIIDDES-2255
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Editors
> Affects Versions: 8.3, 8.4
> Environment: JVM's local is not English (ex. ja)
> Reporter: hisao furuichi
>
> If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
> {noformat}
> Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
> {noformat}
> Additional info:
> In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308(tag 8.3.3). I think following code will solve this issue.
> {noformat}
> SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2255) Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
by hisao furuichi (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2255?page=com.atlassian.jira.plu... ]
hisao furuichi updated TEIIDDES-2255:
-------------------------------------
Description:
If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
* Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
Additional info:
In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308. I think following code will solve this issue.
{noformat}
SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
{noformat}
was:
If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
* Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
> Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
> -----------------------------------------------------------------------
>
> Key: TEIIDDES-2255
> URL: https://issues.jboss.org/browse/TEIIDDES-2255
> Project: Teiid Designer
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Editors
> Affects Versions: 8.3, 8.4
> Environment: JVM's local is not English (ex. ja)
> Reporter: hisao furuichi
>
> If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
> * Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
> Additional info:
> In org.teiid.designer.vdb.Vdb.java, SimpleDateFormat is instantiated without setting a local at Line 308. I think following code will solve this issue.
> {noformat}
> SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", java.util.Locale.ENGLISH);
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2255) Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
by hisao furuichi (JIRA)
hisao furuichi created TEIIDDES-2255:
----------------------------------------
Summary: Creating VDBs in JBDS Teiid Designer give "Unparseable Date" exceptions
Key: TEIIDDES-2255
URL: https://issues.jboss.org/browse/TEIIDDES-2255
Project: Teiid Designer
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Editors
Affects Versions: 8.4, 8.3
Environment: JVM's local is not English (ex. ja)
Reporter: hisao furuichi
If a local for jvm is not English, user can not create a VDB in the Teiid Designer. The Designer keeps coming back with the exception:
* Unparseable date: "Mon Jun 23 16:43:40 CEST 2014"
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2161) Merge various fixes from master into 8.3.4
by Johnathon Lee (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2161?page=com.atlassian.jira.plu... ]
Johnathon Lee reassigned TEIIDDES-2161:
---------------------------------------
Assignee: Johnathon Lee
> Merge various fixes from master into 8.3.4
> ------------------------------------------
>
> Key: TEIIDDES-2161
> URL: https://issues.jboss.org/browse/TEIIDDES-2161
> Project: Teiid Designer
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: Patch Release
> Reporter: Barry LaFond
> Assignee: Johnathon Lee
> Priority: Blocker
> Fix For: 8.3.4
>
>
> *Candidates*
> * TEIIDDES-2152 Adding source table with quoted name results in wrong generated SQL statement
> * TEIIDDES-2142 & TEIIDDES-2131 New VDB Data Role' Dialog needs layout improvement
> * TEIIDDES-2147 Packaged runtime client lib versions in Designer are behind the corresponding server libs (Investigate if it's possible to back-port)
> * TEIIDDES-2224 web service returns 500 when concurrent access
> *Completed Upstream*
> * TEIIDDES-2156 Building Vdbs in eclipse should not throw runtime exceptions
> * TEIIDDES-2153 Create relational model from SOAP WS with Service Mode MESSAGE can't be finished
> * TEIIDDES-2162 WSDL->Souce/View Importer issues
> *Merged*
> * TEIIDDES-2017 NPE while using Teiid Connection Importer
> * TEIIDDES-2018 DDL importer creates wrong data type for "integer"
> * TEIIDDES-2089 Teiid connection import throws "java.lang.IllegalArgumentException: The supplied model folder refers to an existing non-model project" on Windows
> * TEIIDDES-2111 NPE trying to Preview Data (partial merge)
> * TEIIDDES-2138 Restrict "New VDB" wizard's "Add model" to the current project
> * TEIIDDES-2154 Preview VDB is not updated after adding or modifying a translator override ( partial related commit)
> * TEIIDDES-2164 Editing teiid importer connection url can't be finished
> * TEIIDDES-2186 SWT Illegal Argument exception from Teiid Server Editor page
> * TEIIDDES-2189 Add ModelType validation in the New MED wizard to prevent creating MED without one selected
> * TEIIDDES-2205 Remove table name error validation for names that include '.' delimiter (related to TEIIDDES-2100)
> * TEIIDDES-2214 Cannot generate CXF WAR from VDB created in 8.3.3
> * TEIIDDES-2244 Exception in TeiidServerVersion parsing "8.4.1-redhat-7"
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (TEIIDDES-2252) Add preference to importers to specify which characters should be substituted for
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2252?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-2252:
-----------------------------------
Fix Version/s: 8.6
> Add preference to importers to specify which characters should be substituted for
> ---------------------------------------------------------------------------------
>
> Key: TEIIDDES-2252
> URL: https://issues.jboss.org/browse/TEIIDDES-2252
> Project: Teiid Designer
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: Import/Export
> Affects Versions: 8.5
> Reporter: Van Halbert
> Assignee: Barry LaFond
> Fix For: 8.6
>
>
> Add a preference that would allow the user to specify a set of characters that should be replaced by another character.
> This enhancement will resolve the issue when ModeShape metadata is being imported using the Teiid Connection importer, and will allow the user to substitute the colon for an underscore. But would also be available for any other data source that would have need for this type of substitution.
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months