Uday Bhagwat

Greenhorn
+ Follow
since Feb 18, 2010
Merit badge: grant badges
Biography
I am a Software Engineer working in the Java technology.
I have a working knowledge in Java 1.5, Servlets/JSP, JUnit, Struts 1.1, Web Services.
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 Uday Bhagwat

Oh ok...
Any idea how I can do that? Since I get theurl from the request object.
And a request.getRequestURL gives me only -> knowledgecentral/DocViewWindow.html

Please let me know on this regard,
Thanks in advance
11 years ago
Hi folks,

I have the following URL :

http://localhost:8080/knowledgecenter/DocViewWindow.html#!docviewwidget;documentId=10011;feedbackId=5;feedbackTabInFocus=true

When in my ServletFilter I try do a :



It gives me a null.
What I would want is #!docviewwidget;documentId=10011;feedbackId=5;feedbackTabInFocus=true.
This basically is for a GWT page.
Please let me know as to what I can do..Thanks in advance
11 years ago
Hi thanks a TON Rob!,

I used the following logic,


and it worked Thanks again!!!
13 years ago
Hi I have the following requirement:

I have to find the position of the higher order bit for a given number. I am achiving it by the following method.

for (int key = 0; key<32; key++)
{
result = ((given_number & 0x80000000) == 0) ? 0 : 1;
system.out.println(result);
given_number<<=1;
}

This works fine when the given_value is of type int.

For long it doesnt work at all.

Ex. if given value is 1048576, I get the posiotn of 1 to be 11.
when i print this, 00000000000100000000000000000000

But if i initiliaze 1048576 as long, it doesnt work.
When i print this 00000000000111111111111111111111

Please help........
13 years ago
Thanks Anuradha for clarifying


All the best,
Uday.
14 years ago
Congrats Martin ,

Even I have decided to take up the exam and in that grit have joined this wonderful community

Thanks again,
Uday.
14 years ago
Congrats Anuradha!

I have decided to take up the exam.

Can you please let me know how much time it may take for an intermidiary like me to prepare myself?
Just in case so that I can plan my studies and decide when to take up the exam.

It would be great if you share these info

Thanks again,
Uday
14 years ago