You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2001/07/23 11:01:00 UTC

[Bug 2735] New: - a core task for idlj please

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2735

*** shadow/2735	Mon Jul 23 02:00:59 2001
--- shadow/2735.tmp.541	Mon Jul 23 02:00:59 2001
***************
*** 0 ****
--- 1,37 ----
+ +============================================================================+
+ | a core task for idlj please                                                |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 2735                        Product: Ant                     |
+ |       Status: NEW                         Version: 1.3                     |
+ |   Resolution:                            Platform: All                     |
+ |     Severity: Enhancement              OS/Version: All                     |
+ |     Priority: Other                     Component: Core tasks              |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: ant-dev@jakarta.apache.org                                   |
+ |  Reported By: tgdwyer@yahoo.com                                            |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ Surely I'm not the only one who uses idlj... and it is part of the standard 
+ j2se... can we please have a built in task for it?
+ 
+ currently I do it like this:
+ 
+   <target name="idl" description="Generating CORBA stubs/skeletons...">
+     <exec dir="${src}" executable="${JAVA_HOME}/bin/idlj">
+       <arg value="-fall"/>
+       <arg value="-verbose"/>
+       <arg file="${src}/WilmaChat.idl"/>
+     </exec>
+   </target>
+ 
+ which is far from adequate as there is no dependency check on my idl file.
+ 
+ Maybe there's a really easy way to make this work... but I haven't figured it 
+ out yet.
+ 
+ Thanks Heaps
+ 
+ Tim Dwyer