Thennam Pandian

Ranch Hand
+ Follow
since Oct 11, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
2
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 Thennam Pandian

Hi Luke,

Thanks for your reply.

Is the Handler follows event queue mechanism ?
11 years ago
Hi All,

I am just beginner in android. I came to know that using "android.os.Handler" we can run the GUI related code in GUI thread from non-GUI thread.

I am wondering how the handler object hold the reference of the GUI thread. Because when we create the handler object we are not passing any reference to the GUI thread.

Please clarify me, how it get the reference on this.
11 years ago
If everybody can understand everything from the reference link or tutorial , then what is the need of this forum?
11 years ago

If you think the above link has answer for my questions, Could you please give the answer for each questions.
11 years ago
I want to understand the annotations in general.
11 years ago
Hi Kemal,

I have already gone through the link.
The link doesn't answer my questions.
11 years ago

Hi All,

I am new to annotations. Please clarify the followings on annotations

1. When should we go for annotations?

2. What is the advantage of annotations? How annotations helps the developers?

3. Whether the annotations affects the behavior of the class @ run-time? if yes, please explain.

4. How the custom annotations are processed by apt?




11 years ago

We are using URLConnection to upload the file.
We are writing the file contents to the output stream of the URL connection.

The code is working fine, some times we are getting "ConversionBufferFullException" exception.
The Java doc says "The output buffer for a character conversion is full, but additional input remains to be converted "

Whether it will upload all the file contents or not?

I can't verify this as the file size is huge.
Thanks Lacar.

The working code snippet is below.

URL url = new URL("url");
InputStream in = url.openStream();

Properties prop = new Properties();
prop.load(in);

System.out.println( prop.getProperty("key"));
11 years ago
Hi,


Is it possible to authenticate NIS server using JNDI API?


Thanks,
Thennam.
11 years ago
IS it possible to load a property file from URL?
11 years ago
Hi,

I am new to this. Could you please give me URL for beginning the authentication using LDAP?
11 years ago
Hi,

I am new to this. I have a requirement like based on the input, i need to do authentication on either on LDAP or on NIS using the same authenticator.

Is it possible or I need to use factory to get the authenticator based on the value?

Is it possible to authenticate NIS using java?
11 years ago