You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beehive.apache.org by "Andrew McCulloch (JIRA)" <de...@beehive.apache.org> on 2006/08/28 22:08:22 UTC

[jira] Created: (BEEHIVE-1140) EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans

EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans
-------------------------------------------------------------------------------------------------------

                 Key: BEEHIVE-1140
                 URL: http://issues.apache.org/jira/browse/BEEHIVE-1140
             Project: Beehive
          Issue Type: Bug
          Components: System Controls
    Affects Versions: 1.0.1, v.next
            Reporter: Andrew McCulloch


In EJBJarDeploymentDescriptoHandler.java entity beans are explicitly left out...
...
        // TODO: support Entity & other bean types
        List sessionArray = DomUtils.getChildElementsByName(entBeansType, "session");
...

I am not sure if the same issue is in WebDescriptorHandler.java


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Reopened: (BEEHIVE-1140) EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans

Posted by "Chad Schoettger (JIRA)" <de...@beehive.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-1140?page=all ]

Chad Schoettger reopened BEEHIVE-1140:
--------------------------------------

      Assignee: Chad Schoettger  (was: Jacob Danner)
             
My fix for this issue changed the functionality of how (and where) ejb-refs are inserted into a ejb-jar descriptor file.  To maintain prevouis functionality ejb-refs need to be inserted for each session or entity bean in the ejb-jar file.  My fix changed the behavior to either / or instead of both.



> EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans
> -------------------------------------------------------------------------------------------------------
>
>                 Key: BEEHIVE-1140
>                 URL: http://issues.apache.org/jira/browse/BEEHIVE-1140
>             Project: Beehive
>          Issue Type: Bug
>          Components: System Controls
>    Affects Versions: 1.0.1, v.next
>            Reporter: Andrew McCulloch
>         Assigned To: Chad Schoettger
>             Fix For: v.next
>
>
> In EJBJarDeploymentDescriptoHandler.java entity beans are explicitly left out...
> ...
>         // TODO: support Entity & other bean types
>         List sessionArray = DomUtils.getChildElementsByName(entBeansType, "session");
> ...
> I am not sure if the same issue is in WebDescriptorHandler.java

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (BEEHIVE-1140) EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans

Posted by "Chad Schoettger (JIRA)" <de...@beehive.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-1140?page=all ]

Chad Schoettger resolved BEEHIVE-1140.
--------------------------------------

    Fix Version/s: v.next
       Resolution: Fixed
         Assignee: Jacob Danner  (was: Chad Schoettger)

Fixed, svn rev 438124, 

updated the o.a.b.c.s.e.i.EJBJarDescriptorHandler to correctly process ejb-jar files which include entity beans for which an EJBControl has been created.

Also added new assembly junit tests for the entity bean case.


> EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans
> -------------------------------------------------------------------------------------------------------
>
>                 Key: BEEHIVE-1140
>                 URL: http://issues.apache.org/jira/browse/BEEHIVE-1140
>             Project: Beehive
>          Issue Type: Bug
>          Components: System Controls
>    Affects Versions: 1.0.1, v.next
>            Reporter: Andrew McCulloch
>         Assigned To: Jacob Danner
>             Fix For: v.next
>
>
> In EJBJarDeploymentDescriptoHandler.java entity beans are explicitly left out...
> ...
>         // TODO: support Entity & other bean types
>         List sessionArray = DomUtils.getChildElementsByName(entBeansType, "session");
> ...
> I am not sure if the same issue is in WebDescriptorHandler.java

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (BEEHIVE-1140) EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans

Posted by "Anonymous (JIRA)" <de...@beehive.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-1140?page=all ]


    Attachment: BEEHIVE-1140-patch.txt

> EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans
> -------------------------------------------------------------------------------------------------------
>
>                 Key: BEEHIVE-1140
>                 URL: http://issues.apache.org/jira/browse/BEEHIVE-1140
>             Project: Beehive
>          Issue Type: Bug
>          Components: System Controls
>    Affects Versions: 1.0.1, v.next
>            Reporter: Andrew McCulloch
>         Assigned To: Chad Schoettger
>             Fix For: v.next
>
>         Attachments: BEEHIVE-1140-patch.txt
>
>
> In EJBJarDeploymentDescriptoHandler.java entity beans are explicitly left out...
> ...
>         // TODO: support Entity & other bean types
>         List sessionArray = DomUtils.getChildElementsByName(entBeansType, "session");
> ...
> I am not sure if the same issue is in WebDescriptorHandler.java

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (BEEHIVE-1140) EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans

Posted by "Chris Lemper (JIRA)" <de...@beehive.apache.org>.
    [ http://issues.apache.org/jira/browse/BEEHIVE-1140?page=comments#action_12443106 ] 
            
Chris Lemper commented on BEEHIVE-1140:
---------------------------------------

I have attached a patch to o.a.b.c.s.e.i.EJBJarDescriptorHandler that adds the appropriate ejb refs to all entity beans, both session and entity, in the ejb-jar file.

> EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans
> -------------------------------------------------------------------------------------------------------
>
>                 Key: BEEHIVE-1140
>                 URL: http://issues.apache.org/jira/browse/BEEHIVE-1140
>             Project: Beehive
>          Issue Type: Bug
>          Components: System Controls
>    Affects Versions: 1.0.1, v.next
>            Reporter: Andrew McCulloch
>         Assigned To: Chad Schoettger
>             Fix For: v.next
>
>         Attachments: BEEHIVE-1140-patch.txt
>
>
> In EJBJarDeploymentDescriptoHandler.java entity beans are explicitly left out...
> ...
>         // TODO: support Entity & other bean types
>         List sessionArray = DomUtils.getChildElementsByName(entBeansType, "session");
> ...
> I am not sure if the same issue is in WebDescriptorHandler.java

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (BEEHIVE-1140) EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans

Posted by "Chad Schoettger (JIRA)" <de...@beehive.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-1140?page=all ]

Chad Schoettger reassigned BEEHIVE-1140:
----------------------------------------

    Assignee: Chad Schoettger

> EJBJarDescriptorHandler does mofdify the deployment descriptor for EJBControls pointing to Entity beans
> -------------------------------------------------------------------------------------------------------
>
>                 Key: BEEHIVE-1140
>                 URL: http://issues.apache.org/jira/browse/BEEHIVE-1140
>             Project: Beehive
>          Issue Type: Bug
>          Components: System Controls
>    Affects Versions: 1.0.1, v.next
>            Reporter: Andrew McCulloch
>         Assigned To: Chad Schoettger
>
> In EJBJarDeploymentDescriptoHandler.java entity beans are explicitly left out...
> ...
>         // TODO: support Entity & other bean types
>         List sessionArray = DomUtils.getChildElementsByName(entBeansType, "session");
> ...
> I am not sure if the same issue is in WebDescriptorHandler.java

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira