Actually had to look at the docs on this and I think I see the problem. http://xmlbeans.apache.org/docs/2.0.0/guide/antXmlbean.html This task forms an implicit FileSet and supports all attributes of <fileset> (dir becomes basedir) as well as the nested <include>, <exclude> and <patternset> elements.
so try changing your fileset dir to fileset basedir ie. <xmlbean classgendir="${build.dir}" classpath="${class.path}" failonerror="true"> <fileset basedir="src" excludes="**/*.xsd"/> <fileset basedir="schemas" includes="**/*.*"/> </xmlbean> This might explain why you were getting such odd directories in your compilation errors (build.xml has no basedir set or absolute path referenced). Please let us know if this was the issue, -jacobd On Dec 10, 2007 12:12 PM, Dário Abdulrehman <[EMAIL PROTECTED]> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > The first solution doesn't work. How do I use the declared fileset in the > task? > > > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.7 (MingW32) > Comment: http://firegpg.tuxfamily.org > > iD8DBQFHXZ2eHfwTJs1Ix7cRAiWWAJ90Sj6my4JDB8ai80rJW5UG0BBZuwCfeObU > 2GQSwSj6DHpx6D8DD3HbWI8= > =t9fz > -----END PGP SIGNATURE----- > > > On Dec 10, 2007 7:51 PM, Jacob Danner <[EMAIL PROTECTED]> wrote: > > > > > > > > Try excluding those other directories explicitly > > <exclude name="**\JavaSource\**" /> > > The xmlbeans ant task just uses a standard Ant fileset so thats why > > I'm inclined to this this is a fileset declaration issue versus > > anything specific to the xmlbeans ant task. > > If you still have this problem woudl you try declaring a fileset > > outside of the task and using that. > > This will also allow you to check the items in the fileset using something > like > > <path id="base.path"> > > <fileset dir="your_dir"> > > <include name="**/*.xsd"/> > > <!-- your excludes --> > > </fileset> > > </path> > > > > then do a > > <property name="base.path.prop" refid="base.path"> > > <echo message="${base.path.prop}" /> > > > > Thanks, > > -jacobd > > > > > > > > > > > > > > On Dec 10, 2007 11:40 AM, Dário Abdulrehman < [EMAIL PROTECTED]> > wrote: > > > -----BEGIN PGP SIGNED MESSAGE----- > > > Hash: SHA1 > > > > > > I tried your advice, but unfortunately I get the same results. > > > My code has some compilation errors in other files, which you can see in > the > > > output below, but this ant task shouldn't compile that code anyway... > > > Here is the output: > > > > > > Buildfile: C:\SIGAE\workspace_SIGAE\IntegracoesWeb\build.xml > > > default: > > > [xmlbean] Time to build schema type system: 1.813 seconds > > > [xmlbean] Time to generate code: 1.0 seconds > > > [xmlbean] Compiling 118 source files to > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\build > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CadernetasDAO.java:17: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CadernetasDAO.java:18: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CadernetasDAO.java:213: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > pt.psp.integracoes.incm.anexos.db.CadernetasDAO > > > [xmlbean] public Cadernetas obterInfoAnexoXVIII(Integer idproclic, > Integer > > > anoproc) throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CadernetasDAO.java:339: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > pt.psp.integracoes.incm.anexos.db.CadernetasDAO > > > [xmlbean] public Cadernetas obterInfo(Integer idproclic, Integer > anoproc) > > > throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cadernetas.java:212: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cadernetas.java:255: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cadernetas.java:262: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cadernetas.java:274: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComum.java:442: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComum.java:530: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComum.java:537: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComum.java:549: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadro.java:91: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadro.java:108: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadro.java:115: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadro.java:127: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumTipoProduto.java:46: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumTipoProduto.java:54: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumTipoProduto.java:63: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumTipoProduto.java:72: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumCategoriaDocumento.java:110: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumCategoriaDocumento.java:118: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumCategoriaDocumento.java:127: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumCategoriaDocumento.java:136: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumNivelServico.java:40: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumNivelServico.java:48: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumNivelServico.java:57: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\ParteComumNivelServico.java:66: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadroLinha.java:91: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadroLinha.java:107: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadroLinha.java:114: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CadernetasQuadroLinha.java:126: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CalibreArmaDAO.java:16: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CalibreArmaDAO.java:17: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CalibreArmaDAO.java:45: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > pt.psp.integracoes.incm.anexos.db.CalibreArmaDAO > > > [xmlbean] public static String getCalibreArma(Integer idarma) throws > > > DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:17: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] import org.apache.axis.encoding.Base64 ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:19: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:20: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:24: > > > package pt.psp.util does not exist > > > [xmlbean] import pt.psp.util.Constantes; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:321: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class pt.psp.integracoes.incm.anexos.db.CartoesDB > > > [xmlbean] throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:456: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class pt.psp.integracoes.incm.anexos.db.CartoesDB > > > [xmlbean] throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:461: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class pt.psp.integracoes.incm.anexos.db.CartoesDB > > > [xmlbean] throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CartoesDB.java:465: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class pt.psp.integracoes.incm.anexos.db.CartoesDB > > > [xmlbean] public static Cartoes selectAnexoXIByIdProc(Integer idproc) > > > throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cartoes.java:212: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cartoes.java:255: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cartoes.java:262: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Cartoes.java:274: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadro.java:91: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadro.java:107: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadro.java:114: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadro.java:126: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadroLinha.java:91: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadroLinha.java:107: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadroLinha.java:114: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CartoesQuadroLinha.java:126: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CertificadosDAO.java:17: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CertificadosDAO.java:18: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\CertificadosDAO.java:142: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > > > pt.psp.integracoes.incm.anexos.db.CertificadosDAO > > > [xmlbean] public Certificados obterInfo(Integer idproc) throws > > > DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Certificados.java:272: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Certificados.java:329: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Certificados.java:336: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Certificados.java:348: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadro.java:91: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadro.java:108: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadro.java:115: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadro.java:127: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadroLinha.java:91: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadroLinha.java:107: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadroLinha.java:114: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\CertificadosQuadroLinha.java:126: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\GIA_INCMDB.java:16: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\GIA_INCMDB.java:17: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\GIA_INCMDB.java:18: > > > package pt.psp.sigae.table does not exist > > > [xmlbean] import pt.psp.sigae.table.GIA_INCM; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\GIA_INCMDB.java:37: > > > cannot find symbol > > > [xmlbean] symbol : class GIA_INCM > > > [xmlbean] location: class pt.psp.integracoes.incm.anexos.db.GIA_INCMDB > > > [xmlbean] public static GIA_INCM selectByIdProc(Integer numProcINCM) > > > throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\GIA_INCMDB.java:37: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class pt.psp.integracoes.incm.anexos.db.GIA_INCMDB > > > [xmlbean] public static GIA_INCM selectByIdProc(Integer numProcINCM) > > > throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg997DB.java:18: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg997DB.java:19: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg997DB.java:21: > > > package pt.psp.util does not exist > > > [xmlbean] import pt.psp.util.Converter; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg997DB.java:51: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > > > pt.psp.integracoes.incm.anexos.db.NotificacoesCtg997DB > > > [xmlbean] public static Notificacoes selectByIdProc(Integer idproc) > throws > > > DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Notificacoes.java:152: > > > package org.apache.axis.description does not exist > > > [xmlbean] private static org.apache.axis.description.TypeDesc typeDesc > = > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Notificacoes.java:180: > > > package org.apache.axis.description does not exist > > > [xmlbean] public static org.apache.axis.description.TypeDesc > getTypeDesc() > > > { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Notificacoes.java:187: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Serializer > getSerializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\webservices\client\incm\anexos\Notificacoes.java:199: > > > package org.apache.axis.encoding does not exist > > > [xmlbean] public static org.apache.axis.encoding.Deserializer > > > getDeserializer( > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg998DB.java:18: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg998DB.java:19: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg998DB.java:21: > > > package pt.psp.util does not exist > > > [xmlbean] import pt.psp.util.Converter; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\NotificacoesCtg998DB.java:50: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > > > pt.psp.integracoes.incm.anexos.db.NotificacoesCtg998DB > > > [xmlbean] public static Notificacoes selectByIdProc(Integer idproc) > throws > > > DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\ParteComumDB.java:8: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\ParteComumDB.java:9: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper ; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\db\ParteComumDB.java:89: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > pt.psp.integracoes.incm.anexos.db.ParteComumDB > > > [xmlbean] public static ParteComum selectByIdProc(Integer idproc) > throws > > > DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\workflow\WorkFlowINCM.java:18: > > > package pt.psp.framework.exception does not exist > > > [xmlbean] import pt.psp.framework.exception.DataException; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\workflow\WorkFlowINCM.java:19: > > > package pt.psp.framework.util does not exist > > > [xmlbean] import pt.psp.framework.util.SqlHelper; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\workflow\WorkFlowINCM.java:54: > > > package pt.psp.util does not exist > > > [xmlbean] import pt.psp.util.Constantes; > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\workflow\WorkFlowINCM.java:91: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > > > pt.psp.integracoes.incm.anexos.workflow.WorkFlowINCM > > > [xmlbean] public static void processa() throws DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\workflow\WorkFlowINCM.java:291: > > > cannot find symbol > > > [xmlbean] symbol : class DataException > > > [xmlbean] location: class > > > pt.psp.integracoes.incm.anexos.workflow.WorkFlowINCM > > > [xmlbean] private static ArrayList obterProcessos() throws > DataException { > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\xmlbeans\CTTDocument.java:17: > > > package org.apache.xmlbeans does not exist > > > [xmlbean] public interface CTTDocument extends > > > org.apache.xmlbeans.XmlObject > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\xmlbeans\CTTDocument.java:19: > > > package org.apache.xmlbeans does not exist > > > [xmlbean] public static final org.apache.xmlbeans.SchemaType type = > > > (org.apache.xmlbeans.SchemaType) > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\xmlbeans\CTTDocument.java:42: > > > package org.apache.xmlbeans does not exist > > > [xmlbean] public interface CTT extends org.apache.xmlbeans.XmlObject > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\xmlbeans\CTTDocument.java:44: > > > package org.apache.xmlbeans does not exist > > > [xmlbean] public static final org.apache.xmlbeans.SchemaType type = > > > (org.apache.xmlbeans.SchemaType) > > > [xmlbean] ^ > > > [xmlbean] > > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\JavaSource\pt\psp\integracoes\incm\anexos\xmlbeans\CTTDocument.java:112: > > > package org.apache.xmlbeans does not exist > > > [xmlbean] public interface NumProcesso extends > > > org.apache.xmlbeans.XmlString > > > [xmlbean] ^ > > > [xmlbean] Note: Some input files use or override a deprecated API. > > > [xmlbean] Note: Recompile with -Xlint:deprecation for details. > > > [xmlbean] Note: Some input files use unchecked or unsafe operations. > > > [xmlbean] Note: Recompile with -Xlint:unchecked for details. > > > [xmlbean] 100 errors > > > > > > BUILD FAILED > > > C:\SIGAE\workspace_SIGAE\IntegracoesWeb\build.xml:29: Compile failed; > see > > > the compiler error output for details. > > > > > > Total time: 8 seconds > > > > > > > > > > > > > > > > > > -----BEGIN PGP SIGNATURE----- > > > Version: GnuPG v1.4.7 (MingW32) > > > Comment: http://firegpg.tuxfamily.org > > > > > > iD8DBQFHXZZAHfwTJs1Ix7cRAkXKAKCzuXuiLwy9YPGyC4kMJ8OCBFijPACbB/cl > > > DZyrKAZb/X5uoxiqbIiogQY= > > > =7Tp+ > > > -----END PGP SIGNATURE----- > > > > > > > > > On Dec 10, 2007 7:30 PM, Jacob Danner < [EMAIL PROTECTED]> wrote: > > > > > > > > > > > > > > > > I think it might be an issue with your fileset definition . Can you > try? > > > > > > > > <fileset dir="WebContent\WEB-INF\xsd" > > > > > <include name="**/*.xsd"/> > > > > <include name="**/*.xsdconfig"/> > > > > </fileset> > > > > > > > > and let us know what happens? > > > > -jacobd > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Dec 10, 2007 11:07 AM, Dário Abdulrehman <[EMAIL PROTECTED] > > > > wrote: > > > > > -----BEGIN PGP SIGNED MESSAGE----- > > > > > Hash: SHA1 > > > > > > > > > > I'm using the following ant file to try to compile a set of XSD and > > > XSDCONFIG files. > > > > > However the script is looking at *all* the Java files under ${src} > > > instead of looking just at the files specified in the Fileset, so I am > > > getting lots errors. > > > > > Shouldn't the XML Beans Ant task just look at the XSD, XSDCONFIG and > the > > > generated Java files to compile the schemas? > > > > > > > > > > Thanks. > > > > > > > > > > <?xml version="1.0"?> > > > > > <project name="MyProject" default="default"> > > > > > <description> > > > > > > > > > > </description> > > > > > > > > > > <property name="src" location="JavaSource"/> > > > > > <property name="build" location="build"/> > > > > > > > > > > > > > > > <target name="default"> > > > > > <taskdef name="xmlbean" > > > classname="org.apache.xmlbeans.impl.tool.XMLBean " > > > > classpath="C:\Programas\jboss-4.0.4.GA\server\default\lib\xbean.jar:C:\Programas\jboss-4.0.4.GA\server\default\lib\jsr173_1.0_api.jar > > > " /> > > > > > <xmlbean > > > > > srcgendir="${src}" > > > > > classgendir="${build}" > > > > > javasource="1.5" > > > > > debug="false" > > > > > verbose="false" > > > > > failonerror="true"> > > > > > <fileset dir="WebContent\WEB-INF\xsd" includes="*.xsd > > > *.xsdconfig"/> > > > > > </xmlbean> > > > > > </target> > > > > > </project> > > > > > > > > > > > > > > > - -- > > > > > Dário Abdulrehman > > > > > PGP Public Key: http://tinyurl.com/2pm9d7 > > > > > - -- > > > > > -----BEGIN PGP SIGNATURE----- > > > > > Version: GnuPG v1.4.7 (MingW32) > > > > > Comment: http://firegpg.tuxfamily.org > > > > > > > > > > iD8DBQFHXY2uHfwTJs1Ix7cRAtheAJ92zbidrLP6NmUGR6MubjbWrLaprwCgnlsV > > > > > OQzlfSvaMDmnh2sL0ayh3nc= > > > > > =kS2O > > > > > -----END PGP SIGNATURE----- > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > Dário Abdulrehman > > > PGP Public Key: http://tinyurl.com/2pm9d7 > > > -- > > > > > > > > > > --------------------------------------------------------------------- > > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > -- > Dário Abdulrehman > PGP Public Key: http://tinyurl.com/2pm9d7 > -- > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]