Jayanthi Mani

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

Recent posts by Jayanthi Mani

Hi,
Try changing this part of the path

PATH =C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\mmon Files\Roxio Shared\ DLLShared; C:\jdk1.3.1_16; C:\j2sdkee1.3.1;M:\Ant\jakartant-1.3;

to

PATH =C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\mmon Files\Roxio Shared\ DLLShared; C:\jdk1.3.1_16\bin; C:\j2sdkee1.3.1;M:\Ant\jakartant-1.3;



Jayanthi.
Hi all,
I have just started HFEJB and am having trouble when using 'deploytool'. I can get an error message saying 'Could not connect to localhost'. My J2EE server is running successfully in another window. I am running on Windows 98 and I have J2SE 1.4 along with J2EE 1.3.

Is Windows 98 causing this problem?
Any repies would be greatly appreciated.
Jayanthi.
Hello,
Thanks for your replies. I would also like to know the study materials that should be used for these exams. Do I need to install Websphere trial version on my computer?

Jayanthi.
Hello all,
I have SCJP 1.2 and SCWCD 1.4 certifications. Which IBM certification can I go for? I did go thru the IBM certification website and it is a little confusing. Should I do 484 - 287 - then 486?
Any input would be greatly appreciated.
Thanks,
Jayanthi.
If possible try some mock exams - where u can actually sit thru for 2 hours. My real exam score was close to the mock exam scores...

Good luck!
19 years ago
Hi all,
Today I passed the exam after a long preparation.All thanks to the authors of the 'Head First' book.
Jayanthi.
19 years ago
I think this thread might answer your question:

https://coderanch.com/t/168333/java-Web-Component-SCWCD/certification/Valid-Values-body-content

JSP doesn't seem to be a valid value for 'body-content' in SimpleTag.


Thanks,
Jayanthi.
I am wondering if it is just a typo:
Can u try changing <int-param> to <init-param> and see if it works?

From this:
<int-param>
<param-name>adminEmail</param-name>
<param-value>[email protected]</param-value>
</int-param>

To this:
<init-param>
<param-name>adminEmail</param-name>
<param-value>[email protected]</param-value>
</init-param>

Thanks,
Jayanthi.
I am also getting a little confused here. Are tag attributes tag-scoped or page-scoped? Any input would be really appreciated.

Thanks,
Jayanthi.
Hi,
I think I remember this error... I think in "AccountServlet.java" - just try changing
String[] records=(String[]) data.get("userid");
to
String[] records=(String[]) data.get(userid);

ie. no quotes around "userid"
There should be errata posted for Deshmukh book too. Just search the web.

Thanks,
Jayanthi.
It has already been submitted as an error - in case u haven't seen it - check it here:

http://www.oreilly.com/catalog/headservletsjsp/errata/headservletsjsp.unconfirmed

Thanks,
Jayanthi.
Any thoughts on this? I am also thinking the answer for this has to be "empty" instead of "tagdependant".
I don't see any errata issued for this too.

Thanks,
Jayanthi.
Thanks for the explanation.That does clarify my doubt quite nicely

Jayanthi.