Re: different user same class or not ????

2000-07-17 Thread Jitender Aswani
The answer to first Q is no, the JSP file will be compiled to class file only once. Second ans, Yes, Compile classes can be deployed on the server but it should be compiled by your JSP engine since it knows where to put the class and diffrent engines have diffrent directory structure, file name,

Re: different user same class or not ????

2000-07-17 Thread Omer Mahmood
The JSP file is compiled only once. Howver it always compiled when you change the file or you shutdown the server. You can compile the file your self by requesting it your self. Infact you shoudl do this in order to test that whether it runs fine or not. You cannot put the compiled filed into the

different user same class or not ????

2000-07-16 Thread Paras Sharma
Hello i have a one thing to ask In a site like for the first time JSP file is accessed ,it is compiled to class file but if some other user is accessing the same file after the first user, from someother place will it again compile or it will use the same compiled class. one more th