Hi
  I am trying to test the jndi part of my appserver , for that i have already extended ur framework to meet my purpose by creating a folder 'jndi' under 'protocol' folder
and putting my code over there , but when i want to print the report in the file it doesn't do that I am using   FileVisualizer   class for this , and this class contains
the following piece of code for printing the sample results to the file .......
 
 
-------------------------------------------------------------------------------------------------------------------------
   public synchronized void add(SampleResult sampleResult) {

      long sample = sampleResult.getTime();
        if (open) {
            if (verbose) {
                stream.println(sampleResult.getValue(Sampler.SAMPLE_LABEL) + "  " + sample);
            } else {
                stream.println(sample);
            }
        }

    }
-------------------------------------------------------------------------------------------------------------------------
 
now in case of testing with simple Http tester  , you always get a report printed in the file that u specify since above code is called somewhere
now i want to know where is above code being called in the case of  Http testing .
 
it is very important for me .if anyone has answer for this , plz reply asap .
 
Regards
Rohit

Reply via email to