S Venkatesh

Ranch Hand
+ Follow
since Jun 27, 2005
S likes ...
Ubuntu
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by S Venkatesh

Travelling Sales people will have a lot of problems personal and professional. Why are you attempting to solve it?
12 years ago
I solved this problem.

I observed that as we copy paste the contents to excel sheet, HTTP requests are sent to the server to fetch the js and css files. (thanks to the tool Fiddler which helped me intercept the requests)

We did a few changes in the filter, which solved our problem.

Thanks
Venki

Hi Christophe Porteneuve,

I went through the samples from the book. I must admit that I am really happy with the contents and the way they are presented. It co-relates to questions that you end up googling everyday at work.

I am pretty happy about the book. I would definitely love to have a copy.

Thanks
Venki
That is the strange behavior we are facing. If you copy to notepad, it just works.
Hi,

There are a lot of books out there which talk about javascript. How is this book a different one? As a developer, how does this book help me in my daily work?

Thanks
Venki
Hi All,

I am having a strange issue with my application in IE 6, 7 and 8.

To avoid accessing the CSS frequently, I have set the expiry date for the CSS files to 5 years from current date.

Now the issue is, as soon as i copy something from the IE browser and paste the contents in word or excel I am losing all the styles in my application on IE. (as it does not fetch the CSS again)

Is this a known issue? Are there any solutions to this problem?

Thanks
Venki
I solved this by extending my HttpServletRequest with HttpServletRequestWrapper
13 years ago
Hi All,

I have implemented a filter that provides custom implementation of HttpServletRequest and HttpSession implementations. The application works fine on tomcat and other application servers. When I deploy the application on weblogic, I get the following exception.


Is there any workaround to fix this problem?

Thanks

13 years ago
Hi All,

I have a script that is used to create the DB. Are there any plugins for maven that can be used, so that i can have the DB setup using the plugin and specifying custom goals?

Thanks
Venki
15 years ago
Hi All,

I am not sure if this is the right forum to post this question. But i was going through Head First EJB. I found that i need a application server from sun that confirms to J2EE 1.3 Specs and EJB 2.0 Specs. I searched a lot and could not find this server. Can any one point me to the link for the same.

Thanks
Venkatesh S
[ October 23, 2007: Message edited by: S Venkatesh ]
Hi Bear Bibeault,

Thanks for the info. I too feel the same. If its a very minor improvement in performance then no use in implementing the same. And also the frontman current code is tested and proven. Better i'll stick on to the same. . Thanks again for your wonderful job. I am seeing its power and simplicity now .

Thanks
Venkatesh S
16 years ago
Hi,

I felt that rather than loading the class on every request and creating an instance, cloning was a better option as it avoided the overhead of loading the class everytime (But i am not sure how internally java does a clone ).Currently i am working on testing if there is any performance improvement. I believe that there should be some improvement.

Thanks
Venkatesh S
16 years ago