Hola Enrique. �Puede usted intentar esto?

public static void useSoftware() {
   Software software = null;
   try {
      // Hopefully the latest release is perfect?
      software = Web.downloadLatestReleasedPackagedVersion();
      software.getDocs().rtfm();
      software.use();
   } catch( ItDoesntWorkException e ) {
      // It seems it wasn't perfect
      try {
         // Try to use the cvs version. Perhaps the developers have
         // fixed some bugs since last release?
         software = CVS.downloadLatestSourceVersion();
         software.build();
         software.use();
      } catch( ItDoesntWorkException e2 ) {
         // The latest sources don't seem to solve the problem.
         // However, the problem might be related to the way the
         // software is being used.
         // search mailing list for info about the problem
         Answer answer = software.getMailingList().getArchive().search
(e2);
         if( answer == null ) {
            // no answer found on mailing list. Describe the problem.
            ProblemDescription problemDescription = new
ProblemDescription("asMuchInformationAsPossibleDescribingYourProblem", 
e2);
            // send detailed problem description to mailing list
            answer =
software.getMailingList().askQuestion(problemDescription );
            if( answer == null || !answer.solvesProblem() ) {
               // nobody answered, or the answer didn't solve the 
problem
               software.getBugTracker().postBug(problemDescription);
            } else {
               // problem solved
               answer.read();
               software.use();
            }
         }
      }
   }
}

Kind regards,
Aslak


----- Original Message -----
From: "Enrique Rodriguez" <[EMAIL PROTECTED]>
Date: Wednesday, April 10, 2002 1:26 pm
Subject: [Xdoclet-user] xdoclet jdk1.4 and win2k

> Hi all,
> 
> Is anyone using this config??
> with xdoclet 1.1.1 I have an strange error with the deploy ejb-
> jar.xml file.
> I alwais get the same exception in jboss, Malformed xml file. A 
> friend of
> mine have the same config as me, and he got the same error.
> 
> If I read the file, it look ok, is well-formed and i can validate 
> it.I solve
> the error, re-saving the file with my xml-editor, but this is very 
> boring.
> If i use xdoclet 1.1.2 i get IO Error exception. I explain this 
> error in the
> forums of xdoclet and I get no response.
> 
> I hace this error in my code and also with the examples bundled 
> with xdoclet
> dist, so I'm sure that is something with my (our becose my friend 
> have the
> same as me) config.
> 
> Any help???
> 
> Pardon for my english.
> 
> Regards, Enrique.
> 
> _____________________________
> Enrique Rodriguez Lasterra
> 
> 
> _______________________________________________
> Xdoclet-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/xdoclet-user
>


_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to