Click here to Skip to main content
15,884,388 members
Articles / Programming Languages / Java / Java SE / J2EE

EJB 3.0 Remote Session Bean Lookup

Rate me:
Please Sign up or sign in to vote.
3.50/5 (8 votes)
1 May 2008CPOL4 min read 123.3K   1.2K   27  
This article describes a way to perform remote lookup of EJB 3.0 session bean into simple Java application.
<?xml version="1.0" encoding="UTF-8"?>
<project default="-deploy-ant" basedir=".">
    <target name="-deploy-ant" if="deploy.ant.enabled">
        <fail message="Deploy is not supported for the current target server"/>
    </target>
    <target name="-undeploy-ant" if="deploy.ant.enabled">
        <fail message="Undeploy is not supported for the current target server"/>
    </target>
</project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Microsoft
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions