Message:

   The following issue has been re-assigned.

   Assignee: Matthias Germann (mailto:[EMAIL PROTECTED])
---------------------------------------------------------------------
View the issue:
  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-689

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: XDT-689
    Summary: local interfaces in ejb-jar.xml although not declared in build.xml
       Type: Bug

     Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

    Project: XDoclet
 Components: 
             EJB Module
   Versions:
             1.2 Beta 3

   Assignee: Matthias Germann
   Reporter: Marcin Mieszek

    Created: Mon, 27 Oct 2003 7:36 PM
    Updated: Tue, 1 Mar 2005 7:54 AM

Description:
I got following ejb-jar.xml (this is just a part):

      <session >
         <description><![CDATA[Description Bean]]></description>

         <ejb-name>Stateful</ejb-name>

         <home>pl.xi.StatefulHome</home>
         <remote>pl.xi.Stateful</remote>
         <local-home>pl.xi.StatefulLocalHome</local-home>
         <local>pl.xi.StatefulLocal</local>
         <ejb-class>pl.xi.StatefulBean</ejb-class>
         <session-type>Stateful</session-type>
         <transaction-type>Container</transaction-type>

      </session>

..although in build.xml I ask only for remote interfacec:

    <target name="ejbdoclet" depends="prepare">

        <echo>+---------------------------------------------------+</echo>
        <echo>|                                                   |</echo>
        <echo>| R U N N I N G   E J B D O C L E T                 |</echo>
        <echo>|                                                   |</echo>
        <echo>+---------------------------------------------------+</echo>

        <ejbdoclet
            destdir="${samples.gen-src.dir}"
            mergedir="parent-fake-to-debug"
            excludedtags="@version,@author,@todo"
            addedtags="@xdoclet-generated at ${TODAY},@copyright The XDoclet 
Team,@author Xi Systems,@version ${version}"
            ejbspec="2.0"
            force="${samples.xdoclet.force}"
            verbose="false"
            >

            <fileset dir="src">
                <include name="**/*Bean.java"/>
            </fileset>

                        <remoteinterface/>
                        <homeinterface/>

            <deploymentdescriptor
                destdir="${samples.meta-inf.dir}"
                validatexml="true"
                mergedir="fake-to-debug"
                description="Description"
                >
            </deploymentdescriptor>


            <jboss
                version="3.2"
                xmlencoding="UTF-8"
                destdir="${samples.meta-inf.dir}"
                validatexml="true"
                />


        </ejbdoclet>

    </target>

I do not want to have:

         <local-home>pl.xi.StatefulLocalHome</local-home>
         <local>pl.xi.StatefulLocal</local>

in ejb-jar.xml

-- 
Marcin


---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/xdoclet/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to