Return to Snippet

Revision: 60224
at October 31, 2012 04:31 by thescorpion


Updated Code
// Se debe Modificar el build.xml del proyecto a utilizar RMI, se le debe adicionar las siguiente lineas.  ojo aqui solo se genera los .class, 
//para agregar que genere los .java se debe anadir el siguiente tab: sourcebase="${src.dir}

<target depends = "rmicSources" name="-post-compile-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-post-compile"> 
    </target> 

    <target name="rmicSources"> 
        <rmic base="${build.classes.dir}" verify="true" debug="true"/> 
    </target>     
    
    <target depends = "rmicSources" name="-post-compile-test-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-post-compile-test"> 
    </target> 

    <target depends = "rmicSources" name="-pre-compile-test-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-pre-compile-test"> 
    </target>

Revision: 60223
at October 31, 2012 04:31 by thescorpion


Updated Code
// Se debe Modificar el build.xml del proyecto a utilizar RMI, se le debe adicionar las siguiente lineas.  ojo aqui solo se genera los .class, para agregar que genere los .java se debe anadir el siguiente tab: sourcebase="${src.dir}

<target depends = "rmicSources" name="-post-compile-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-post-compile"> 
    </target> 

    <target name="rmicSources"> 
        <rmic base="${build.classes.dir}" verify="true" debug="true"/> 
    </target>     
    
    <target depends = "rmicSources" name="-post-compile-test-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-post-compile-test"> 
    </target> 

    <target depends = "rmicSources" name="-pre-compile-test-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-pre-compile-test"> 
    </target>

Revision: 60222
at October 26, 2012 04:41 by thescorpion


Initial Code
// Se debe Modificar el build.xml del proyecto a utilizar RMI, se le debe adicionar las siguiente lineas.

<target depends = "rmicSources" name="-post-compile-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-post-compile"> 
    </target> 

    <target name="rmicSources"> 
        <rmic base="${build.classes.dir}" verify="true" debug="true"/> 
    </target>     
    
    <target depends = "rmicSources" name="-post-compile-test-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-post-compile-test"> 
    </target> 

    <target depends = "rmicSources" name="-pre-compile-test-single"> 
    </target> 
    
    <target depends = "rmicSources" name="-pre-compile-test"> 
    </target>

Initial URL


Initial Description
Para genera clases de RMI skel y stub en proceso distribuidos

Initial Title
Generar Clases skel y stub (RMI) in Netbeans

Initial Tags
java

Initial Language
Java