Hi Grant,

All the available docs are on the web and in the mailing list archives. Did
you consider this?

public 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();
            }
         }
      }
   }
}

Anything else won't compile ;-)

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Grant
> Marblestone
> Sent: 9. april 2002 18:47
> To: [EMAIL PROTECTED]
> Subject: [Xdoclet-user] middlegen
>
>
> aslak,
>
> I have worked to make middlegen work for about a week on and off and it
> doesnt seem to want to!  I am using jboss 3.0 with oracle 8i.  I
> downloaded
> the latest cvs version. First thing when its "done" generating
> code it hangs
> and makes me close the command window to continue.  Second when i specify
> tables to be generated i get a blank window where teh tables should be.
>
> are these known bugs, is there any more documentation on how to use
> middlegen?
>
> Thanks,
>
> Grant
>
> _______________________________________________
> Xdoclet-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/xdoclet-user


_______________________________________________________________

Sponsored by:
Looking for hip toys and fun scwag.  There is no better place
then the good friends at ThinkGeek. http://www.ThinkGeek.com/
_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to