ram ragu

Ranch Hand
+ Follow
since Mar 12, 2002
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 ram ragu

Thank you every one for your responses. I liked JWEB+ very much .. it is really a good tool... I am gonna buy this shortly. Now I happened to see another tool called SCWCD Whiz .. cost of this tool is close to 100USD .I was wondering why this tool is priced too much almost 3 times the cost of JWeb+. What is so great abt it , I don't have a clue?
If anyone can shed some light on comparing these two tools.. that will be of great help to all ranchers..
Thanks again
Ram
Hello,
When we do URL rewrite as shown below
pw.println("<a href=\""
+ res.encodeURL("/servlet/Hello")
+ "\"> View Servlet</a><br>");
are we supposed to see the SessionID on the URL? ( when we view the source )
Thanks
Ram
Hello,
I found on enturware website that this tools costs 35.00 USD. Is anyone know if we can get it for less than this. This will help all users of this forum..
Thanks in advance
Ram
Thank you very much! This forum is really good!
Hello!
I have taken SCJP for Java2 and cleared on septemper 22, 2000. Now I want to take SCWCD exam. I think the requirement for SCWCD is .. you have to be a SCJP first.. also I heard that SUN has changed its policy that all certifications will expire after 2 years..does this mean I have to take SCJP one more time (meaning my earlier PASS in SCJP is expired)before I go for SCWCD?
Please clarify..
Thanks in advance
Thanks
Ram
Thanks a lot for your reply!
any idea what HTTP-EQUIV="PRAGMA" means?
Kindly let me know
Ram
sorry! I did mean to send my earlier mail....
what will the following meta tags do? kindly let me know
Ram
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META content="text/html;charset=utf-8" http-equiv="Content-Type">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META content="text/html;charset=utf-8" http-equiv="Content-Type">
Thanks a lot Monty!
I will try this and keep you posted.
Ram
21 years ago
Thanks Cindy.
But looks like I don't have to do any conversion on java side as per Monty.
Thanks for your time and help!
I am waiting to here from Monty. I will keep every one posted as soon as my problem is resolve!
Once again thanks.
Ram
21 years ago
Thanks a lot Monty!
I got so disappointed trying to resolve this .. now I am so happy and excited to see your reply!
Could you please help me out first set this working on WEBSPHERE on Windows NT first then I will try to implement this SOLARIS.
I have Websphere 3.5.4 running on Windows NT 4.0
and it has DB2 UDB version 7.0 installed on it ( for WAS ) I will be running a servlet from this NT machine which will go to the Mainframe OS 390 ( DB for os/390 version 7) read a DB2 table which has data which has been loaded after coverting from ASCII to EBCDIC using iconv utility
Here is the code snippet from my servlet:

Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
Connection connection=DriverManager.getConnection;
("jdbc b2:AAAADB2P","userID","Password");

String sqlStatement =" SELECT X_DESC " +
" FROMS.LTABLE " +
" WHEREC_LANG_WW = ? ";
PreparedStatement preparedStatement = connection.prepareStatement(sqlStatement);
preparedStatement.setString(1, "JAPANESE");
ResultSet resultSet = preparedStatement.executeQuery();

while (resultSet.next()){
String data = resultSet.getString("X_DESC").trim();
}
Then I wanted to send the string data to an HTML page on the browser. I already configured Internet exlorer for japanese language.
Kinldy let me know what should I do now on my Windows NT side first then we can go from there.
Your help is highly appreciated! Once again thanks a lot for your help!
Thanks
Ram
21 years ago
I have some japanese characters stored in DB2 tables on mainframe OS/390. I need to read the data thru java programs running( on websphere) on solaris .. DB2 for OS/390 verson 6 stores the data in EBCDIC and when that data has been brought to solaris it needs to be converted into ASCII
Kindly let me know if you have any idea?
Thanks
Ram
21 years ago
Thanks! but compilation throws an error at the the followin line String thisCharSet = Config.getCharSet();
any idea?
Ram
21 years ago
Hello,
I have a string(in EBCDIC), wants to know how to convert it into ASCII using java
kinldy let me know
Ram
21 years ago
I also came to know that there is way we can store java classes also in UDB tables..
If anyone can shed light on these topics, it will be of great help to me!
Thanks a lot
Ram