uday kantt

Greenhorn
+ Follow
since May 05, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by uday kantt

hi
Please can you be more clear. What is the current path of the java 7 and previous version of java. Where did you make the changes. This would help in giving the right answer.

Thanks
11 years ago
Hi

Please can you help what needs to be configured in httpd.conf file : Like about Virtual host settings, plugin-cfg.xml file setting. How is it configured.

Thanks a lot...
11 years ago
Hi All

I have a simple question: Is there any editor for writing wsadmin scripts(Jython), because the indentation is causing a lot of problems. Please help.
As in Eclipse is there any command that would auto indent the script.

Thanks & regards
11 years ago
Hi

I have few doubts on heap dumps and core dumps... which are as follows

kill -3 generates the core dump.
.
using wsadmin or kill -9 you can generate the heap dump.

So which files need to be changed or updated to generate heapdump and core dump using the kill-3 command. Please let me know any further detail as well.

Thanks
12 years ago
hi
the error could be the username and password to access the Queue manager are incorrect or else looking at the code in bold : Does that return a string, so typecast it to int.
thats what i could guess.
12 years ago
Hi

How to identify which process is listening on particular port. eg. 9060

Thanks
12 years ago
Hi Rajesh
Yes they are changed from 5 to 6. 6 fully supports j2ee 1.4. thats all i know for now
13 years ago
hi Rajesh

ok you want to install websphere 6 on windows. So next would be which windows: xp or vista or 7. XP with SP2 is fine. vista and 7 face installation problems. Next step is to search for a folder called WAS in the Websphere 6 folder. In the WAS folder find the install icon. Double click on it and follow the GUI wizard instructions for the installation. Mostly it is next... next but slightly tricky. I think this would help you for now.
13 years ago
Hi rajesh
on which operating system you wish to install websphere application server 6. this would help you to get a better answer.
13 years ago
hi satish
login into the administrative console... then click on the servers link, then select the application server check box and click the Stop button.
13 years ago
Hi Mary
I think that the log message you see was the log message that was created when first time the server start up failed. So why not clear the log message file and try again, you may not find any errors this time.
13 years ago
Hi Divya
You can install and run Web sphere 6.1 on Windows 7 and you can also install and run Web sphere 7 on Windows 7. There would be no problem
13 years ago
Hi
Using Struts(1.3) validation frame work can we validate a file (valid file Path or not). I know we can do the URL validation. But how to do the File path validation. For eg. as follows




Please help
Thanks
13 years ago
Hi
The following is the XML file
<Students>
<Student id=10>
<name>Steve</name>
<qualification status="failed">Computer Science</qualification>
</Student>
<Student id=9>
<name>John</name>
<qualification status="passed">Computer Graphics</qualification>
</Student>
<Student id=8>
<name>Sarah</name>
<qualification status="passed">Computer Science</qualification>
</Student>
</Students>


So given the above XML file. If the status ="passed" then that particular id of the Student should be fetched into the String variable. Is this possible. Do we have to travel reverse in the XML file. Is this possible. Please Help.
Hi
So it is looking for a class called Driver in the com.mysql.jdbc package. For this you need to add the mysql-connector-java-5.0.8-bin.jar file to the classpath. Then things work fine.

Thanks