JAXB Cannot find javax.xml.bind.annotation

One of the files which I'm attempting to compile calls upon java classes within the following package:

javax.xml.bind.annotation

The classes and package structure is located within the Jar File (which I have added to my classpath) :

C:\Sun\jwsdp-1.6\jaxb\lib\jaxb-api.jar

HOWEVER

When I attempt to compile the files in a DOS Session It flags an error saying that javax.xml.bind.annotation does not exist :

Does anyone have any experience in this or any idea as to other possibilities i may try. I have verified the path of the package that it is correctly structured and the jar file is on my Classpath in Windows and my Path in Dos which I have set using a command in C:\autoexec.bat

[733 byte] By [irishmangianta] at [2007-10-3 4:49:16]
# 1
Package javax.xml.bind.annotation is a new package in JAXB 2.0/JWSDP 2.0. Use JWSDP 2.0 and add C:\Sun\jwsdp-2.0\jaxb\lib\jaxb-api.jar to classpath.
dvohra09a at 2007-7-14 22:53:46 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Sorted. I had it added to my path within dos but I needed to explicitly add it during the compilation process (javac) by using the following commandjavac -cp C:\Sun\jwsdp-1.6\jaxb\lib\jaxb-api.jar;*.javaCheers.
JPMonta at 2007-7-14 22:53:46 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...