Soroj Margun

Ranch Hand
+ Follow
since Jun 15, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Soroj Margun

Congrats !!! That is a great score.
16 years ago
Congrats !!! That is a great score. Would you kindly share about the design such as UI for the others.
Congrats !!! That is a great score.
16 years ago
Hi all,

Close socket and reopen it every time that same client connect may cause your machine to run out of port when many client simultaneously connect due to a waiting period gap when closing socket.
Hi Eric,

You don't have to provide GUI for that. But you may have to implement it for a (super) user like assessor to run through it using their automatic test system.

Wish you pass soon.
Congrat !!! It's a great score !!!
16 years ago
Hi Manpreet,

You're already answer yourseft.

We can cast raw type to specific type



Object is still raw type unless you explicit specify it to be a generic type. On the other hand, all generic type is also put raw type. Do not forget this for your SCJP.
Hi kapil ,

Just relax. Carefully read the instruction and question (especially no. of choice to select). And last but not least, trust yourself.

You can do it.
Hi all ,

URL rewriting is only used when client browser is block or not support cookie. Because client need to send back a session ID to identified itself and link with session object on the server side. If cookie is disabled, you must use URL rewriting technic to maintain this relationship.

Hope this help.
16 years ago
Hi Kah,

Short answer: Don't worry.

Long answer: Do not worry. There are so many reasons to ignore this, few of them are
1. Only a few OS can create database file that can contains "Integer.MAX" no. of records with specified schema.
2. You dont have to cache all deleted record in cache list. Otherwise the cache list will become array of record, right?
3. You can (and should) specified any limitation of you program in you choice document.

Nothing is perfect. The limitation is a fact to cope with.
Hi Alok,

First of all, you should log-in at certmanager website and look at history section to see whether they already mail you a cert kit (status is mailed) or not? If not, you should mail to [email protected] to ask about cert kit.

Hope this help.
Hi seetharaman,

At first server will *compile* JSP and execute whatever you define in JSP page (both tag and scriptlet). After that the result text will be merged with normal HTML code.

Hope this help.
16 years ago
JSP
Hi krish,

I think it's not a good idea to send the JTree over network. For FTP client, I suggest you to send only list of file data from server to client and let client construct JTree by itself.

Hope this help.
Hi Gaurav,

I agree with Krishna that if you want to work with J2EE environment, you should take either SCWCD or SCBCD for the job. But if you want to expand your knowledge or learn core java API by real experience, I suggest you to take the SCJD. This cert will make you truely understand core java API especially thread programming which I think it's important for every job you work in the future.

Good luck.
Hi all,

For server host, I suggest you should validate it by using java.net.InetAddress class. This class can check both IP address and host name.

Hope this help.