[JBoss JIRA] (JBTIS-187) Create Recursive XML Text Source Test
by Andrej Podhradsky (JIRA)
[ https://issues.jboss.org/browse/JBTIS-187?page=com.atlassian.jira.plugin.... ]
Andrej Podhradsky updated JBTIS-187:
------------------------------------
Assignee: Lucie Fabrikova (was: Andrej Podhradsky)
> Create Recursive XML Text Source Test
> -------------------------------------
>
> Key: JBTIS-187
> URL: https://issues.jboss.org/browse/JBTIS-187
> Project: JBoss Tools Integration Stack
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: QE
> Affects Versions: 4.1.3
> Environment: Teiid Designer 8.x
> Reporter: Andrej Podhradsky
> Assignee: Lucie Fabrikova
> Fix For: 4.1.3
>
>
> The test will include:
> * Importing an XML schema
> * Modeling recursive XML documents
> * Setting up a connection to a text source
> * Using the TEXTTABLE function to access the data in a relational fashion
> * Creating and deploying a VDB
> * Executing queries that return XML documents
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (JBIDE-15662) Warning Multiple JAX-RS Activators doesn't disappear
by Radoslav Rábara (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15662?page=com.atlassian.jira.plugi... ]
Radoslav Rábara updated JBIDE-15662:
------------------------------------
Description: Warning Multiple JAX-RS Activators doesn't disappear after only one activator is present. This bug is probably related to JBIDE-15402. (was: Warning Multiple JAX-RS Activators doesn't disappear after activator is deleted. This bug is probably related to JBIDE-15402.)
> Warning Multiple JAX-RS Activators doesn't disappear
> ----------------------------------------------------
>
> Key: JBIDE-15662
> URL: https://issues.jboss.org/browse/JBIDE-15662
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: webservices
> Affects Versions: 4.1.1.Alpha1
> Reporter: Radoslav Rábara
>
> Warning Multiple JAX-RS Activators doesn't disappear after only one activator is present. This bug is probably related to JBIDE-15402.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (JBIDE-15402) Doubled warnings Multiple JAX-RS Activators
by Radoslav Rábara (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15402?page=com.atlassian.jira.plugi... ]
Radoslav Rábara closed JBIDE-15402.
-----------------------------------
Verified with JBDS 7.1.0 Alpha2-v20131002-0939-B431
> Doubled warnings Multiple JAX-RS Activators
> -------------------------------------------
>
> Key: JBIDE-15402
> URL: https://issues.jboss.org/browse/JBIDE-15402
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: webservices
> Affects Versions: 4.1.0.Final
> Reporter: Radoslav Rábara
> Assignee: Max Rydahl Andersen
> Labels: jax-rs, warning_messages, webservices
> Fix For: 4.1.1.Alpha2, 4.2.0.Alpha1
>
> Attachments: jax-rs warnings.jpg
>
>
> After creating multiple JAX-RS Activators in Dynamic Web Project with JAX-RS support, there are doubled warnings ("Multiple JAX-RS Activators are defined for the project.") for each activator.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (JBIDE-15656) package-info.java in managed package in persistence.xml causes StackOverflowError
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15656?page=com.atlassian.jira.plugi... ]
Fred Bricon updated JBIDE-15656:
--------------------------------
Description:
A customer reported stackoverflow errors occuring when importing one of his maven projects.
After investigation, it appears the SO is caused by HibernatePackageInfoImpl
{noformat}
java.lang.StackOverflowError
at org.eclipse.core.runtime.Path.computeSegmentCount(Path.java:450)
at org.eclipse.core.runtime.Path.computeSegments(Path.java:467)
at org.eclipse.core.runtime.Path.initialize(Path.java:602)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.jdt.internal.core.PackageFragment.resource(PackageFragment.java:326)
at org.eclipse.jdt.internal.core.CompilationUnit.resource(CompilationUnit.java:894)
at org.eclipse.jdt.internal.core.Openable.getResource(Openable.java:453)
at org.eclipse.jpt.common.core.internal.resource.java.source.SourceCompilationUnit.getFile(SourceCompilationUnit.java:95)
at org.eclipse.jpt.common.core.internal.resource.java.AbstractJavaResourceModel.getFile(AbstractJavaResourceModel.java:98)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:238)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
{noformat}
The simplest setup to reproduce involves creating a JPA project (Hibernate Platform 2), and adding the following files :
{code:title=persistence.xml }
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="jpa">
<class>foo.bar.model</class>
</persistence-unit>
</persistence>
{code}
{code:title=package-info.java}
package foo.bar.model;
{code}
was:
A customer reported stackoverflow errors occuring when importing one of his maven projects.
After investigation, it appears the SO is caused by HibernatePackageInfoImpl
{noformat}
java.lang.StackOverflowError
at org.eclipse.core.runtime.Path.computeSegmentCount(Path.java:450)
at org.eclipse.core.runtime.Path.computeSegments(Path.java:467)
at org.eclipse.core.runtime.Path.initialize(Path.java:602)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.jdt.internal.core.PackageFragment.resource(PackageFragment.java:326)
at org.eclipse.jdt.internal.core.CompilationUnit.resource(CompilationUnit.java:894)
at org.eclipse.jdt.internal.core.Openable.getResource(Openable.java:453)
at org.eclipse.jpt.common.core.internal.resource.java.source.SourceCompilationUnit.getFile(SourceCompilationUnit.java:95)
at org.eclipse.jpt.common.core.internal.resource.java.AbstractJavaResourceModel.getFile(AbstractJavaResourceModel.java:98)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:238)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
{noformat}
The simplest setup to reproduce, involves creating a JPA project (Hibernate Platform 2), and adding the following files :
{code:title=persistence.xml }
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="jpa">
<class>foo.bar.model</class>
</persistence-unit>
</persistence>
{code}
{code:title=package-info.java}
package foo.bar.model;
{code}
> package-info.java in managed package in persistence.xml causes StackOverflowError
> ---------------------------------------------------------------------------------
>
> Key: JBIDE-15656
> URL: https://issues.jboss.org/browse/JBIDE-15656
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: hibernate
> Affects Versions: 4.1.0.Final
> Reporter: Fred Bricon
> Priority: Blocker
> Fix For: 4.1.1.Beta1
>
>
> A customer reported stackoverflow errors occuring when importing one of his maven projects.
> After investigation, it appears the SO is caused by HibernatePackageInfoImpl
> {noformat}
> java.lang.StackOverflowError
> at org.eclipse.core.runtime.Path.computeSegmentCount(Path.java:450)
> at org.eclipse.core.runtime.Path.computeSegments(Path.java:467)
> at org.eclipse.core.runtime.Path.initialize(Path.java:602)
> at org.eclipse.core.runtime.Path.<init>(Path.java:163)
> at org.eclipse.jdt.internal.core.PackageFragment.resource(PackageFragment.java:326)
> at org.eclipse.jdt.internal.core.CompilationUnit.resource(CompilationUnit.java:894)
> at org.eclipse.jdt.internal.core.Openable.getResource(Openable.java:453)
> at org.eclipse.jpt.common.core.internal.resource.java.source.SourceCompilationUnit.getFile(SourceCompilationUnit.java:95)
> at org.eclipse.jpt.common.core.internal.resource.java.AbstractJavaResourceModel.getFile(AbstractJavaResourceModel.java:98)
> at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:238)
> at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
> at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
> {noformat}
> The simplest setup to reproduce involves creating a JPA project (Hibernate Platform 2), and adding the following files :
> {code:title=persistence.xml }
> <?xml version="1.0" encoding="UTF-8"?>
> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
> <persistence-unit name="jpa">
> <class>foo.bar.model</class>
> </persistence-unit>
> </persistence>
> {code}
> {code:title=package-info.java}
> package foo.bar.model;
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (JBIDE-15656) package-info.java in managed package in persistence.xml causes StackOverflowError
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15656?page=com.atlassian.jira.plugi... ]
Fred Bricon updated JBIDE-15656:
--------------------------------
Description:
A customer reported stackoverflow errors occuring when importing one of his maven projects.
After investigation, it appears the SO is caused by HibernatePackageInfoImpl
{noformat}
java.lang.StackOverflowError
at org.eclipse.core.runtime.Path.computeSegmentCount(Path.java:450)
at org.eclipse.core.runtime.Path.computeSegments(Path.java:467)
at org.eclipse.core.runtime.Path.initialize(Path.java:602)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.jdt.internal.core.PackageFragment.resource(PackageFragment.java:326)
at org.eclipse.jdt.internal.core.CompilationUnit.resource(CompilationUnit.java:894)
at org.eclipse.jdt.internal.core.Openable.getResource(Openable.java:453)
at org.eclipse.jpt.common.core.internal.resource.java.source.SourceCompilationUnit.getFile(SourceCompilationUnit.java:95)
at org.eclipse.jpt.common.core.internal.resource.java.AbstractJavaResourceModel.getFile(AbstractJavaResourceModel.java:98)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:238)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
{noformat}
The simplest setup to reproduce, involves creating a JPA project (Hibernate Platform 2), and adding the following files :
{code:title=persistence.xml }
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="jpa">
<class>foo.bar.model</class>
</persistence-unit>
</persistence>
{code}
{code:title=package-info.java}
package foo.bar.model;
{code}
was:
A customer reported stackoverflow errors occuring when importing one of his maven projects.
After investigation, it appears the SO is caused by HibernatePackageInfoImpl
{ noformat}
java.lang.StackOverflowError
at org.eclipse.core.runtime.Path.computeSegmentCount(Path.java:450)
at org.eclipse.core.runtime.Path.computeSegments(Path.java:467)
at org.eclipse.core.runtime.Path.initialize(Path.java:602)
at org.eclipse.core.runtime.Path.<init>(Path.java:163)
at org.eclipse.jdt.internal.core.PackageFragment.resource(PackageFragment.java:326)
at org.eclipse.jdt.internal.core.CompilationUnit.resource(CompilationUnit.java:894)
at org.eclipse.jdt.internal.core.Openable.getResource(Openable.java:453)
at org.eclipse.jpt.common.core.internal.resource.java.source.SourceCompilationUnit.getFile(SourceCompilationUnit.java:95)
at org.eclipse.jpt.common.core.internal.resource.java.AbstractJavaResourceModel.getFile(AbstractJavaResourceModel.java:98)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:238)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
{noformat}
The simplest setup to reproduce, involves creating a JPA project (Hibernate Platform 2), and adding the following files :
{code:title=persistence.xml }
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="jpa">
<class>foo.bar.model</class>
</persistence-unit>
</persistence>
{code}
{code:title=package-info.java}
package foo.bar.model;
{code}
> package-info.java in managed package in persistence.xml causes StackOverflowError
> ---------------------------------------------------------------------------------
>
> Key: JBIDE-15656
> URL: https://issues.jboss.org/browse/JBIDE-15656
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: hibernate
> Affects Versions: 4.1.0.Final
> Reporter: Fred Bricon
> Priority: Blocker
> Fix For: 4.1.1.Beta1
>
>
> A customer reported stackoverflow errors occuring when importing one of his maven projects.
> After investigation, it appears the SO is caused by HibernatePackageInfoImpl
> {noformat}
> java.lang.StackOverflowError
> at org.eclipse.core.runtime.Path.computeSegmentCount(Path.java:450)
> at org.eclipse.core.runtime.Path.computeSegments(Path.java:467)
> at org.eclipse.core.runtime.Path.initialize(Path.java:602)
> at org.eclipse.core.runtime.Path.<init>(Path.java:163)
> at org.eclipse.jdt.internal.core.PackageFragment.resource(PackageFragment.java:326)
> at org.eclipse.jdt.internal.core.CompilationUnit.resource(CompilationUnit.java:894)
> at org.eclipse.jdt.internal.core.Openable.getResource(Openable.java:453)
> at org.eclipse.jpt.common.core.internal.resource.java.source.SourceCompilationUnit.getFile(SourceCompilationUnit.java:95)
> at org.eclipse.jpt.common.core.internal.resource.java.AbstractJavaResourceModel.getFile(AbstractJavaResourceModel.java:98)
> at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:238)
> at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
> at org.jboss.tools.hibernate.jpt.core.internal.context.java.HibernatePackageInfoImpl.validate(HibernatePackageInfoImpl.java:245)
> {noformat}
> The simplest setup to reproduce, involves creating a JPA project (Hibernate Platform 2), and adding the following files :
> {code:title=persistence.xml }
> <?xml version="1.0" encoding="UTF-8"?>
> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
> <persistence-unit name="jpa">
> <class>foo.bar.model</class>
> </persistence-unit>
> </persistence>
> {code}
> {code:title=package-info.java}
> package foo.bar.model;
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] (JBIDE-15654) New Application wizard: merge existing / new application forms into a single one
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15654?page=com.atlassian.jira.plugi... ]
Michelle Murray updated JBIDE-15654:
------------------------------------
Affects: Documentation (Ref Guide, User Guide, etc.)
> New Application wizard: merge existing / new application forms into a single one
> --------------------------------------------------------------------------------
>
> Key: JBIDE-15654
> URL: https://issues.jboss.org/browse/JBIDE-15654
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.2.0.Alpha1
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.2.0.Alpha1
>
> Attachments: configure-application-wizard-page.png
>
>
> in the new / import application wizard the first page allows you to configure your app. It allows you to choose an existing or create a new app.
> !configure-application-wizard-page.png!
> Both forms should be merged into a single form in order to unclutter the current UI which is very crowded already.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months