R Bhatia

Greenhorn
+ Follow
since Nov 15, 2004
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 R Bhatia

Hi,

For generating the password, you have to go with creating your own logic.. like if you are getting date of birth, then do some manipulations in that and send that with some other concatinating characters.e.g If user enters Name as "ABCDE" and DOB as 01/01/2000, then u can write a logic which will accept these two parameters and return a string. Password: AB4DE.... First two chars+sum of integers in DOB+Last two chars.
This is just a simple example, if you find any other better solution then please let me know.
Best of luck...
R S
19 years ago
Hi,

Let me know what is Tag lib.

R S
19 years ago
JSP
Hi,

Tell me Difference between Java Bean and Java Class..
19 years ago
Hi,

interface ServletContext
Defines a set of methods that a servlet uses to communicate with its servlet container, for example, to get the MIME type of a file, dispatch requests, or write to a log file.

interface HttpSession
Provides a way to identify a user across more than one page request or visit to a Web site and to store information about that user.
19 years ago
Hi,

I need to ask one question regarding using this forum.

I can get the email notifications for the new post which i put by checking the option for email notofication. But please let me know how can I check the list of replies I have done, as in some cases the discussion for any topic leads to many replies.

Regards,
R S
19 years ago
Hi,

I have no much idea as I am pursuing weblogic but can suggest you few things.

1. Check the Listen Address of the node maneger and port.
2. After proper address and port click on monitoring and check it should not give any error.

Now move further........

Best of luck,
Rajat
19 years ago
Hi,

Please let me know in detail :

1. requestDispatcher
2. sendRedirect
3. forward

It will be great if one can provide me difference between above three and which one is to be used preferably.

Regards,
R S
19 years ago
Check this for java coding conventions http://java.sun.com/docs/codeconv/


Originally posted by Manoja Brahma:
I have a statement like "show name"

If i will type in dos prompt as bellow and press "TAB" key it should show full statement.

Example :

C:\manoja> show "press TAB Key"

it should show like

C:\manoja> show name

19 years ago
Hi,
Better put the query in a variable and execute like....

final String str = "INSERT INTO udetails......";
System.out.println(str);
st.executeUpdate(str);

And check what values are printed on your console.

Best of Luck,
R S