Search:

Type: Posts; User: vkumar23

Search: Search took 0.07 seconds.

  1. Replies
    10
    Views
    2,065

    Re: unable to run log code

    hi

    have attached two files which shows how to use it

    logUnit.java - this class is the master class that needs to be called in all your programs
    to use the logger

    it has two methods info...
  2. Replies
    10
    Views
    2,065

    Re: unable to run log code

    yeah go ahead and ask the question mate

    vinod
  3. Replies
    10
    Views
    2,065

    Re: unable to run log code

    this is because your log4j jar is not available on the class path. Please ensure its in your tomcats lib folder
  4. Replies
    10
    Views
    2,065

    Re: unable to run log code

    can u post the exact errors and also highlight the line where error occurs
  5. Replies
    2
    Views
    1,659

    Re: Problem with JavaMail... HELP! :(

    do you get any exceptions at all
  6. Re: Java is resetting my variables to zero, and other mysterious things

    schrosby

    as you have suggested, its a bit difficult to read the files from here. can you attach the text files of the code
    and the input file that is in ur c drive,

    Moreover on glancing...
  7. Re: The character '' is an invalid XML character exception getting

    sumanta

    this problem doesnot seem to be related to the number of rows as it should never matter

    can you attach a sample of xml you r trying to create.Moreover this problem would not be to do...
  8. Re: The character '' is an invalid XML character exception getting

    @http://forums.sun.com/thread.jspa?threadID=5352681@
  9. Re: The character '' is an invalid XML character exception getting

    please refer to this link and tell me if it helps

    Java Technology & XML - invalid XML character in castor XML
  10. Re: Creating a class for points in three dimensions.

    something like this

    import java.awt.Point;

    public class Point3d extends Point{

    private double Xco1;
    private double Xco2;
    private double Yco1;
    private double Yco1;
  11. Re: Creating a class for points in three dimensions.

    to start with

    a) your method should not be static as the superclass doesnot have this method as static so in essence you have
    not yet overridden the method.

    read the following

    ...
Results 1 to 11 of 11