[JBoss JIRA] Created: (JBDS-494) Welcome Screen Still shows at the end of Seam New Project Wizard
by Jim Tyrrell (JIRA)
Welcome Screen Still shows at the end of Seam New Project Wizard
----------------------------------------------------------------
Key: JBDS-494
URL: https://jira.jboss.org/jira/browse/JBDS-494
Project: Developer Studio
Issue Type: Feature Request
Affects Versions: 2.0.0.beta1
Reporter: Jim Tyrrell
Attachments: Why not the default screen instead o fthe landing screen after new Create Seam Project.png
After successfully completing the generation of the New Seam Project Wizard I am brought back to the Welcome page as seen in the attached screen shot. This is not to me the correct behavior.
It would be nice to have my workspace opened with the projects on the left hand side, servers open on the bottom. It might also be nice to ask if I want to start the JBoss Server bound to this project...and I might even consider starting and deploying the home page so it is viewable in a web browser after the wizard completes. Or should all of this start in the background, or should you prompt the user to do all of this. Thoughts?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 5 months
[JBoss JIRA] Created: (JBIDE-2050) AS (running/stopped) state is not retrieved in Eclipse if the server configuration is not the "default" but another one with different port bindings.
by Mario Balaban (JIRA)
AS (running/stopped) state is not retrieved in Eclipse if the server configuration is not the "default" but another one with different port bindings.
-----------------------------------------------------------------------------------------------------------------------------------------------------
Key: JBIDE-2050
URL: http://jira.jboss.com/jira/browse/JBIDE-2050
Project: Tools (JBoss Tools)
Issue Type: Bug
Affects Versions: 2.0.1
Environment: Linux 2.6.22-14-generic, Eclipse Europa Version: 3.3.2, JbossToolsPlugin 2.0.1GA-ALL linux, JbossAS 4.2.2.GA
Reporter: Mario Balaban
On the same machine I had to create 2 instances of JbossAS, one for testing and another for development. The instance used for testing is using the "default" configuration. The test (default) instance I am able to start and to stop correctly from the Eclipse IDE. The "devel" instance that is a copy of the "default" configuration but has different port bindings (modified jboss-service.xml by uncommenting the tag <mbean code="org.jboss.services.binding.ServiceBindingManager"..../> ) has problems when starting and stopping from eclipse IDE. In the console window of IDE I see " [Server] JBoss (MX MicroKernel) [4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)] Started in 15s:993ms" but the state of the server in the "Servers" window of the IDE is Starting... It remains "Starting..." till an OutOfMemory is visualized in the IDE. This error happens even when no applications are deployed to the deploy directory of the "devel" configuration. It seems that the problem is associated to different port bindings used by "devel" configuration.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 5 months
[JBoss JIRA] Created: (JBIDE-4512) "var cannot be resolved" does not recognize single value
by Julien Kronegg (JIRA)
"var cannot be resolved" does not recognize single value
--------------------------------------------------------
Key: JBIDE-4512
URL: https://jira.jboss.org/jira/browse/JBIDE-4512
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml source editing
Affects Versions: 3.0.0.GA
Environment: JBossTools-ALL-win32-3.0.1.GA-R200905070146-H18, Seam 2.1.1.GA
Reporter: Julien Kronegg
Jboss Tools does not recognize correctly the "var" property in list iterators (e.g. rich:dataTable, h:dataTable) if the "value" property is a single value (but works if the "value" property is a List.
This problem occurs for XHTML pages generated by seam-gen where the value is "#{myEntityHome.instance.singleValue}" (see <a href=https://jira.jboss.org/jira/browse/JBIDE-4048>JBIDE-4048</a>).
Effects:
1. add a lot of warnings "variableName cannot be resolved" that should be there
2. makes "Seam Validator" task to be very slow when there is a lot of pages (because the Seam Validator task is run on each XHTML file with at least one unresolved EL, see <a href=https://jira.jboss.org/jira/browse/JBIDE-3336>JBIDE-3336</a>)
Expected:
As the rich:dataTable displays one row when the "value" property is a single value and not a list, Jboss Tools is expected to recognize list AND single value.
How to reproduce:
EXECUTE: Create seam project.
EXECUTE: Create MyBean component (see attached java file)
EXECUTE: Open home.xhtml
EXECUTE: Add:
<h:dataTable var="myVar" value="#{myBean.values}">
<h:column><h:outputText value="#{myVar.myProperty}"/></h:column>
</h:dataTable>
<h:dataTable var="myVar" value="#{myBean.singleValue}">
<h:column><h:outputText value="#{myVar.myProperty}"/></h:column>
</h:dataTable>
<h:dataTable var="myVar" value="#{myBean.singleValueAsList}">
<h:column><h:outputText value="#{myVar.myProperty}"/></h:column>
</h:dataTable>
ASSERT: no warning "myVar cannot be resolved" appear
Workaround:
Use a "value" property as List and not as single value (maybe wrapping the single value to a List should do the trick).
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 5 months