[
https://issues.jboss.org/browse/JBIDE-12132?page=com.atlassian.jira.plugi...
]
Viacheslav Kabanovich updated JBIDE-12132:
------------------------------------------
Attachment: JBIDE-12132.patch
Patch is attached.
Support new name spaces of components.xml v.2.3
-----------------------------------------------
Key: JBIDE-12132
URL:
https://issues.jboss.org/browse/JBIDE-12132
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: Seam 2
Reporter: Alexey Kazakov
Assignee: Viacheslav Kabanovich
Priority: Critical
Fix For: 3.3.1, 3.4.0.M1
Attachments: JBIDE-12132.patch
{code}
<?xml version="1.0" encoding="UTF-8"?>
<components
xmlns="http://jboss.org/schema/seam/components"
xmlns:core="http://jboss.org/schema/seam/core"
xmlns:persistence="http://jboss.org/schema/seam/persistence"
xmlns:drools="http://jboss.org/schema/seam/drools"
xmlns:bpm="http://jboss.org/schema/seam/bpm"
xmlns:security="http://jboss.org/schema/seam/security"
xmlns:mail="http://jboss.org/schema/seam/mail"
xmlns:web="http://jboss.org/schema/seam/web"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://jboss.org/schema/seam/core
http://jboss.org/schema/seam/core-2.3.xsd
http://jboss.org/schema/seam/persistence
http://jboss.org/schema/seam/persistence-2.3.xsd
http://jboss.org/schema/seam/drools
http://jboss.org/schema/seam/drools-2.3.xsd
http://jboss.org/schema/seam/bpm
http://jboss.org/schema/seam/bpm-2.3.xsd
http://jboss.org/schema/seam/security
http://jboss.org/schema/seam/security-2.3.xsd
http://jboss.org/schema/seam/mail
http://jboss.org/schema/seam/mail-2.3.xsd
http://jboss.org/schema/seam/web
http://jboss.org/schema/seam/web-2.3.xsd
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
<core:init debug="true" jndi-pattern="@jndiPattern@"/>
<core:manager concurrent-request-timeout="500"
conversation-timeout="120000"
conversation-id-parameter="cid"
parent-conversation-id-parameter="pid"/>
<!-- Make sure this URL pattern is the same as that used by the Faces Servlet
-->
<web:hot-deploy-filter url-pattern="*.seam"/>
<!-- If you are still using JBoss 4, uncomment this to have your PU started -->
<!-- <persistence:entity-manager-factory
name="entityManagerFactory"-->
<!-- persistence-unit-name="seamwar"/>-->
<!-- If you are still using JBoss 4, uncomment this to have the
entityManagerFactory ysed -->
<!-- <persistence:managed-persistence-context name="entityManager"
auto-create="true"-->
<!--
entity-manager-factory="#{entityManagerFactory}"/>-->
<persistence:managed-persistence-context name="entityManager"
auto-create="true"
persistence-unit-jndi-name="java:/seamwarEntityManagerFactory"/>
<drools:rule-base name="securityRules">
<drools:rule-files><value>/security.drl</value></drools:rule-files>
</drools:rule-base>
<security:rule-based-permission-resolver
security-rules="#{securityRules}"/>
<security:identity authenticate-method="#{authenticator.authenticate}"
remember-me="true"/>
<event type="org.jboss.seam.security.notLoggedIn">
<action execute="#{redirect.captureCurrentView}"/>
</event>
<event type="org.jboss.seam.security.loginSuccessful">
<action execute="#{redirect.returnToCapturedView}"/>
</event>
<mail:mail-session host="localhost" port="25"/>
<!-- For use with jBPM pageflow or process management -->
<!--
<bpm:jbpm>
<bpm:process-definitions></bpm:process-definitions>
<bpm:pageflow-definitions></bpm:pageflow-definitions>
</bpm:jbpm>
-->
</components>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira