Håkan Andersson wrote:
> <path id="a.a">
> <pathelement location="c:\sun\inferno\bin\" />
> <pathelement location="c:\sun\jdk1.3\jre\lib\rt.jar" />
>
> <fileset dir="c:\sun\jini1_1\lib"/>
Remove the trailing '/' in the above fileset tag. You want
<fileset dir="c:/sun/jini1_1/lib">
>
> <include name="**/*.jar" />
> </fileset>
>
> <pathelement location="C:\Program Files\Oracle\JDeveloper
> 3.1.1.2\lib\jdev-rt.zip" />
> </path>
It's really easy to miss the closing /> or to add an extra one by mistake. I
can't count the number of times I've done it myself.
Glenn McAllister