[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-3766) examples is not working under tomcat 6.0
by Alexey Kakunin (JIRA)
examples is not working under tomcat 6.0
----------------------------------------
Key: JBSEAM-3766
URL: https://jira.jboss.org/jira/browse/JBSEAM-3766
Project: Seam
Issue Type: Bug
Components: Examples
Affects Versions: 2.1.0.SP1
Environment: CentOs 5.2, java 1.6.10_u10, tomcat 6.0.18
Reporter: Alexey Kakunin
Priority: Minor
just following to documentation, configured tomcat.home in build.properties,switched to example project folder (for example registration) and called ant tomcat.deploy
Project built and deployed to tomcat, but during initialization followed error generated:
java.lang.NoClassDefFoundError: javassist/util/proxy/MethodFilter
at org.jboss.seam.contexts.Contexts.destroy(Contexts.java:243)
at org.jboss.seam.contexts.Lifecycle.endApplication(Lifecycle.java:56)
at org.jboss.seam.contexts.ServletLifecycle.endApplication(ServletLifecycle.java:135)
at org.jboss.seam.servlet.SeamListener.contextDestroyed(SeamListener.java:39)
at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:3882)
at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4523)
Looks like javassist should be added into depepndencies
--
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
15 years, 9 months
[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-3741) It is now invalid to write an an EL expression inside view-id!
by Francisco Jose Peredo Noguez (JIRA)
It is now invalid to write an an EL expression inside view-id!
--------------------------------------------------------------
Key: JBSEAM-3741
URL: https://jira.jboss.org/jira/browse/JBSEAM-3741
Project: Seam
Issue Type: Bug
Affects Versions: 2.1.0.SP1
Reporter: Francisco Jose Peredo Noguez
I am hitting this issue JBIDE-3248, at first I thougth it was an incompatiblity problem between JBoss Tools 2.1.2, and Seam 2.1.x, but now I think it is an error in http://jboss.com/products/seam/pages-2.1.xsd.
In pages-2.1.xsd we have this code (that didnt exist in 2.0):
<xs:simpleType name="view-id">
<xs:restriction base="xs:string">
<xs:pattern value="(/.*)|\*"/>
</xs:restriction>
</xs:simpleType>
That is limiting view-id by preventing it from using EL expressions inside it, but EL expression do work inside view-id:
<navigation from-action="#{someEntityHome.persist}">
<rule if-outcome="persisted" if="#{not empty someEntityFrom}">
<end-conversation/>
<redirect view-id="{#someEntityFrom}"/>
</rule>
<rule if-outcome="persisted" if="#{empty someEntityFrom}">
<end-conversation/>
<redirect view-id="/Crud/SomeEntityList.xhtml"/>
</rule>
</navigation>
The line <redirect view-id="{#someEntityFrom}"/> is being reported as an error, but it is perfectly fine. I think the <xs:pattern value="(/.*)|\*"/> specified for view-id in pages-2.1.xsd is an error.
--
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
15 years, 9 months
[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-3588) seamspace example needs to use @Begin(join=true) for some actions
by Jay Balunas (JIRA)
seamspace example needs to use @Begin(join=true) for some actions
-----------------------------------------------------------------
Key: JBSEAM-3588
URL: https://jira.jboss.org/jira/browse/JBSEAM-3588
Project: Seam
Issue Type: Bug
Components: Examples
Affects Versions: 2.1.0.CR1
Environment: JDK6
AS 5 CR2
Reporter: Jay Balunas
Assignee: Shane Bryzak
Priority: Minor
Fix For: 2.1.1.CR1
If you click on create user or create role twice you get the exception below in the log
Caused by: java.lang.IllegalStateException: begin method invoked from a long-running conversation, try using @Begin(join=true) on method: createRole
at org.jboss.seam.core.ConversationInterceptor.aroundInvoke(ConversationInterceptor.java:47)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodContextInterceptor.java:44)
--
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
15 years, 9 months