[jbosstools-issues] [JBoss JIRA] Updated: (JBIDE-1335) components.xml editor showing errors

Rizwan Qureshi (JIRA) jira-events at lists.jboss.org
Mon Nov 19 13:50:19 EST 2007


     [ http://jira.jboss.com/jira/browse/JBIDE-1335?page=all ]

Rizwan Qureshi updated JBIDE-1335:
----------------------------------

    Description: 
seam-gen version: 2.0GA
RHDS version:CR1

When I open the components.xml file using the "Red Hat XML editor" I get errors and one is unable to use the "Tree View" to edit info (all fields are disabled).
errors are at these locations:
1. @debug@
2. <action execute="#{redirect.captureCurrentView}"/>
   (error displayed: Attribute 'execute' is not allowed....)


--------components.xml file--------------------------
<?xml version="1.0" encoding="UTF-8"?>
<components xmlns="http://jboss.com/products/seam/components"
            xmlns:core="http://jboss.com/products/seam/core"
            xmlns:persistence="http://jboss.com/products/seam/persistence"
            xmlns:drools="http://jboss.com/products/seam/drools"
            xmlns:bpm="http://jboss.com/products/seam/bpm"
            xmlns:security="http://jboss.com/products/seam/security"
            xmlns:mail="http://jboss.com/products/seam/mail"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation=
                "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd 
                 http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd 
                 http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-2.0.xsd
                 http://jboss.com/products/seam/bpm http://jboss.com/products/seam/bpm-2.0.xsd
                 http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
                 http://jboss.com/products/seam/mail http://jboss.com/products/seam/mail-2.0.xsd
                 http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">

   <core:init debug="@debug@" jndi-pattern="@jndiPattern@"/>
     
   <core:manager concurrent-request-timeout="500" 
                 conversation-timeout="120000" 
                 conversation-id-parameter="cid"/>
    
   <persistence:managed-persistence-context name="entityManager"
                                     auto-create="true"
                      persistence-unit-jndi-name="java:/omniwebngEntityManagerFactory"/>

   <drools:rule-base name="securityRules">
       <drools:rule-files>
           <value>/security.drl</value>
       </drools:rule-files>
   </drools:rule-base>

   <security:identity authenticate-method="#{authenticator.authenticate}"
                           security-rules="#{securityRules}"/>
   
   <event type="org.jboss.seam.notLoggedIn">
       <action execute="#{redirect.captureCurrentView}"/>
   </event>
   <event type="org.jboss.seam.postAuthenticate">
       <action execute="#{redirect.returnToCapturedView}"/>
   </event>
   
   <mail:mail-session host="localhost" port="2525" username="test" password="test" />
        
   <!-- 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>

  was:
seam-gen version: 2.0GA
RHDS version:Beta2

When I open the components.xml file using the "Red Hat XML editor" I get errors and one is unable to use the "Tree View" to edit info (all fields are disabled).
errors are at these locations:
1. @debug@
2. <action execute="#{redirect.captureCurrentView}"/>
   (error displayed: Attribute 'execute' is not allowed....)


--------components.xml file--------------------------
<?xml version="1.0" encoding="UTF-8"?>
<components xmlns="http://jboss.com/products/seam/components"
            xmlns:core="http://jboss.com/products/seam/core"
            xmlns:persistence="http://jboss.com/products/seam/persistence"
            xmlns:drools="http://jboss.com/products/seam/drools"
            xmlns:bpm="http://jboss.com/products/seam/bpm"
            xmlns:security="http://jboss.com/products/seam/security"
            xmlns:mail="http://jboss.com/products/seam/mail"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation=
                "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd 
                 http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd 
                 http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-2.0.xsd
                 http://jboss.com/products/seam/bpm http://jboss.com/products/seam/bpm-2.0.xsd
                 http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
                 http://jboss.com/products/seam/mail http://jboss.com/products/seam/mail-2.0.xsd
                 http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">

   <core:init debug="@debug@" jndi-pattern="@jndiPattern@"/>
     
   <core:manager concurrent-request-timeout="500" 
                 conversation-timeout="120000" 
                 conversation-id-parameter="cid"/>
    
   <persistence:managed-persistence-context name="entityManager"
                                     auto-create="true"
                      persistence-unit-jndi-name="java:/omniwebngEntityManagerFactory"/>

   <drools:rule-base name="securityRules">
       <drools:rule-files>
           <value>/security.drl</value>
       </drools:rule-files>
   </drools:rule-base>

   <security:identity authenticate-method="#{authenticator.authenticate}"
                           security-rules="#{securityRules}"/>
   
   <event type="org.jboss.seam.notLoggedIn">
       <action execute="#{redirect.captureCurrentView}"/>
   </event>
   <event type="org.jboss.seam.postAuthenticate">
       <action execute="#{redirect.returnToCapturedView}"/>
   </event>
   
   <mail:mail-session host="localhost" port="2525" username="test" password="test" />
        
   <!-- 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>


> components.xml editor showing errors
> ------------------------------------
>
>                 Key: JBIDE-1335
>                 URL: http://jira.jboss.com/jira/browse/JBIDE-1335
>             Project: JBoss Tools
>          Issue Type: Bug
>          Components: jsp/jsf/xml source editing
>    Affects Versions: 2.0.0.CR1
>         Environment: Windows-Vista, using RHDS-CR1
>            Reporter: Rizwan Qureshi
>
> seam-gen version: 2.0GA
> RHDS version:CR1
> When I open the components.xml file using the "Red Hat XML editor" I get errors and one is unable to use the "Tree View" to edit info (all fields are disabled).
> errors are at these locations:
> 1. @debug@
> 2. <action execute="#{redirect.captureCurrentView}"/>
>    (error displayed: Attribute 'execute' is not allowed....)
> --------components.xml file--------------------------
> <?xml version="1.0" encoding="UTF-8"?>
> <components xmlns="http://jboss.com/products/seam/components"
>             xmlns:core="http://jboss.com/products/seam/core"
>             xmlns:persistence="http://jboss.com/products/seam/persistence"
>             xmlns:drools="http://jboss.com/products/seam/drools"
>             xmlns:bpm="http://jboss.com/products/seam/bpm"
>             xmlns:security="http://jboss.com/products/seam/security"
>             xmlns:mail="http://jboss.com/products/seam/mail"
>             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>             xsi:schemaLocation=
>                 "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd 
>                  http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd 
>                  http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-2.0.xsd
>                  http://jboss.com/products/seam/bpm http://jboss.com/products/seam/bpm-2.0.xsd
>                  http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
>                  http://jboss.com/products/seam/mail http://jboss.com/products/seam/mail-2.0.xsd
>                  http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">
>    <core:init debug="@debug@" jndi-pattern="@jndiPattern@"/>
>      
>    <core:manager concurrent-request-timeout="500" 
>                  conversation-timeout="120000" 
>                  conversation-id-parameter="cid"/>
>     
>    <persistence:managed-persistence-context name="entityManager"
>                                      auto-create="true"
>                       persistence-unit-jndi-name="java:/omniwebngEntityManagerFactory"/>
>    <drools:rule-base name="securityRules">
>        <drools:rule-files>
>            <value>/security.drl</value>
>        </drools:rule-files>
>    </drools:rule-base>
>    <security:identity authenticate-method="#{authenticator.authenticate}"
>                            security-rules="#{securityRules}"/>
>    
>    <event type="org.jboss.seam.notLoggedIn">
>        <action execute="#{redirect.captureCurrentView}"/>
>    </event>
>    <event type="org.jboss.seam.postAuthenticate">
>        <action execute="#{redirect.returnToCapturedView}"/>
>    </event>
>    
>    <mail:mail-session host="localhost" port="2525" username="test" password="test" />
>         
>    <!-- 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>

-- 
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

        



More information about the jbosstools-issues mailing list