[JBoss JIRA] Created: (JBDS-1708) CLONE - SOA-P 4.3.0 standalone is not properly added to Server Runtimes after installation.
by Denis Golovin (JIRA)
CLONE - SOA-P 4.3.0 standalone is not properly added to Server Runtimes after installation.
-------------------------------------------------------------------------------------------
Key: JBDS-1708
URL: https://issues.jboss.org/browse/JBDS-1708
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Bug
Components: installer
Affects Versions: 4.1.0.M1
Environment: jbdevstudio-product-linux-gtk-4.1.0.v201105091943R-H400-M1, linux 32bit, Java Sun JDK 1.6_25
Reporter: Vlado Pakan
Assignee: Denis Golovin
Priority: Critical
Fix For: 4.1.0.CR2
Attachments: editServerRuntimeEnvironmentDialogWarning.png, screenshot81.png, screenshot82.png
When searching for runtimes select directory with SOA-P 4.3.0 standalone runtime. It's recognized as AS v.4.3.0 and added to available runtimes during installation. But after installation is finished and JBDS is run this runtime is defined as v. 4.2 runtime and therefore there is a warning displayed in Edit Server Runtime Environment dialog.
When added manually via Preferences > Server Runtime > Environments > Add it's possible to add this runtime as JBoss EAP 4.3 runtime without warning displayed in Edit Server Runtime Environment dialog.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (JBDS-1796) JBDS update site builds should use .GA when parent pom has .Final as the BUILD_ALIAS (artifact suffix)
by Nick Boldt (JIRA)
JBDS update site builds should use .GA when parent pom has .Final as the BUILD_ALIAS (artifact suffix)
------------------------------------------------------------------------------------------------------
Key: JBDS-1796
URL: https://issues.jboss.org/browse/JBDS-1796
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Bug
Components: Build, updatesite
Affects Versions: 4.1.0.CR4, 5.0.0.M3
Reporter: Nick Boldt
Assignee: Nick Boldt
Fix For: 4.1.0.GA, 5.0.0.M3
Add this (or similar) to 4.1 and 5.0 _stable_branch jobs which build com.jboss features/plugins:
# If .Final in JBT, use .GA in JBDS
if [[ $(cat ${WORKSPACE}/build/parent/pom.xml | grep "<BUILD_ALIAS>Final</BUILD_ALIAS>") ]]; then export MAVEN_FLAGS="${MAVEN_FLAGS} -DBUILD_ALIAS=GA"; fi;
echo $MAVEN_FLAGS
Meanwhile, JBDS product build is still controlled via the version.properties file in SVN.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (JBIDE-8669) Dot character is not supported in DB schema name in Hibernate Configuration
by Boris Na (JIRA)
Dot character is not supported in DB schema name in Hibernate Configuration
---------------------------------------------------------------------------
Key: JBIDE-8669
URL: https://issues.jboss.org/browse/JBIDE-8669
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Hibernate
Affects Versions: LATER
Environment: Hibernate tools version is 3.4.0.v20110215-1252-H31-GA
(by the way it's not listed in the Jira version menu)
Win XP
Eclipse Helios Service Release 1
WTP 3.2.3
Dali 2.3.3
MySQL 5.5.9
Reporter: Boris Na
Assignee: Max Rydahl Andersen
Priority: Minor
1/ Create a schema on MySQL called: myschema.domain
2/ Create a JPA project
3/ Create an entity called myEntity
4/ Create The corresponding Table (via generated script)
5/ Configure Data Source Explorer to the connection => This works well
6/ Configure Hibernate explorer (using above connection)
7/ Try to open the Database part of this view => you get an SQL exception:
org.hibernate.exception.SQLGrammarException: Could not get list of suggested identity strategies from database. Probably a JDBC driver problem.
(...)
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.DOMAIN like 'myentity'' at line 1
(...)
Hint:
I just checked the SQL query (via MySQL proxy) and it lacks `` around the schema name in one query:
show table status from MYSCHEMA.DOMAIN like 'myentity'
Just replace dot by underscore and everything works well.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (JBIDE-9092) Wrong attribute name proposals appear in CA Window for CSS styles inside <style></style> tag
by Victor Rubezhny (JIRA)
Wrong attribute name proposals appear in CA Window for CSS styles inside <style></style> tag
--------------------------------------------------------------------------------------------
Key: JBIDE-9092
URL: https://issues.jboss.org/browse/JBIDE-9092
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml source editing
Affects Versions: 3.3.0.M1
Environment: Eclipse 3.7, WTP 3.3
Reporter: Victor Rubezhny
Assignee: Victor Rubezhny
Fix For: 3.3.0.M3
Wrong tag attribute name proposals appear in CA Window for CSS styles inside <style></style> tag when:
1. There is at least one whitespace character is placed between opening and closing "style" tags
and
2. The CA is invoked when the cursor is pointed right after the opening tag (i.e. "<style type="text/css">| </style>", where "|"-char indicates the cursor position.
In such cases WTP suggests proposals for a tag attribute name insertion, as well as CSS proposals.
Probably it's WTP's issue, because:
1. WTP decides which kind of proposals are to be calculated at some cursor position.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (JBIDE-9051) Tooling shows errors if the view-id parameter in a restrict tag contains a hashtag or Seam EL and no '?' (query param delimiter)
by Ian Hands (JIRA)
Tooling shows errors if the view-id parameter in a restrict tag contains a hashtag or Seam EL and no '?' (query param delimiter)
--------------------------------------------------------------------------------------------------------------------------------
Key: JBIDE-9051
URL: https://issues.jboss.org/browse/JBIDE-9051
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml source editing
Environment: RHEL6, Eclipse 3.6, Current release of JBoss tools
Also noticed error in JBDS 4.x
Reporter: Ian Hands
Assignee: Alexey Kazakov
Priority: Minor
I see that the IDE detects errors if I have a URL in a view-id attribute that has a hastag or Seam EL, and does not have any query parameters.
example:
<exception class="org.jboss.seam.security.AuthorizationException" log-level="trace">
<http-error error-code="403"/>
<redirect view-id="/403.xhtml#{restrictHelper.hashTag}"/>
</exception>
A work around would be to simply use:
<redirect view-id="/403.xhtml?#{restrictHelper.hashTag}"/>
This is still a valid URL, and does not cause the tooling to show errors.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months