Harsha Huddar

Greenhorn
+ Follow
since Oct 03, 2003
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 Harsha Huddar

Hey congrats for ur certification!!

I also saw the long list of certifications you have obtained so far. I am one of those guys who is planning to take SCJP exam. Can someone tell me how does beign certified help on the following fronts:
1. Advancement of career
2. Pay hike
Hi All,

Let us say i have an XML file as below:

<root>
<element1>Harsha</element1>
<element2>Huddar</element2>
<root>

My question is :
1) Is it possible to add nodes of type <element1> to the XML using Marshaller? If so how?

2) What is the best method of updating an XML (add new nodes) using JAXB(if it is possible)?


regards
Harsha
Hi All,
I am trying to run a few applets on Sun Solaris 9 & netscape 6.2.3
The browser pops up an error message saying the appropriate java plugin 1.4.2 is not installed. But I have checked the JRE verison for the browser(in Java Console) which is 1.4.2
The applet code has been obtained by using the HtmlConverter.
The jdk i have installed on the machine is 1.4.2(java -version)
I have tried everything that i think is necessary but with no success.
Please let me know if you have faced similar problems and found the solution for it.
Note : The applets run just fine on Win 2000, IE
19 years ago
If you are using JDK 1.4.x you'll need ojdbc.jar(from Oracle) in common\lib
19 years ago
Refer to HSSF Excel API provided by Apache
20 years ago
JSP
Try compiling & running from Apps dir in the foll. manner
javac com\xyz\tests\*.java
20 years ago
I guess u r using a dial-up connection.
Try this: In IE, go to Tools/Internet Options/Connections.
Select "Never dial a connection" under dial-up & VPN settings.
20 years ago
Guess ur reqmt needs u to make an array of Deitel objects = size of resultset.Whats the stacktrace anyways?
20 years ago
The code seems to be fine. You need to download servlet.jar and put it in ur classpath.
20 years ago
Look into HSSF excel builder API from apache. Its very easy to use.
20 years ago
Thanks Wayne!!
This works!!
20 years ago
Thanks Mike.
I guess this has got to do with Log4j...I need to locate which config file is being used by Tomcat 5 and set the console appender to OFF.
I dont want to install it as a service.
20 years ago
I need to start tomcat without the information messages like
Feb 25, 2004 3:36:18 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on port 8080
Feb 25, 2004 3:36:18 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 2884 ms
Which config file do i need to change?
20 years ago
I want to use xalan.jar's version of a class org.apache.xalan.xslt.Process rather than the rt.jar's version. But since rt.jar classes are loaded first, I am unable to do so.
Is there any workaround for this problem?
20 years ago
1) Synchronisation is better as implementing SingleThreadModel is not fully thread safe.(Multiple threads can still access static variables)
SingleThreadModel is deprecated in Servlet2.4 spec and you are suggested to stop using this interface.
20 years ago