Kalai Selvan

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

Recent posts by Kalai Selvan

Hi All,

I want to read large amount of data (5 Lakh lines of data) from a file within a time limit of 1 Sec. I tried to use buffered reader, but it is taking more than 9 Sec. Is there any other efficient api available in java for reading large amount of data?

Thanks in advance.
15 years ago
Hi all,

I have written a new custom tag and packaged that in a jar file. It works well without facelets. But with facelets it doesn't seem to work, it just outputs the way it is written in xhtml file.

Does custom component packaging needs anything to be done for facelets?
Or do we need to do any additional thing to use custom components along with facelets?

Thanks in advance.
Kalai.
16 years ago
JSF
Hi all,

I am trying to build columns in the h:panelGrid tag dynamically using facelets repeat tag (ui:repeat). My code looks like this:



The output it generated is



All the 4 elements (Emp. No,First Name,Middle Name,Last Name) of the "preferencesBean.columns" in single TD instead of creating 4 different TDs.

Is there any solution or work around available for this?

Thanks in advance.

Kalai.
16 years ago
JSF
Thanks Ulf Dittmer.

Is it possible to use WSS4J with weblogic. Does this will give portability across different soap engines? - This is the one which I am currently looking into.

Thanks.
Kalai.
16 years ago
Hi All,

Is there any protable solution for web service security avaibale?

I am using weblogic for deploying my webservices. my webservice file look something like this:



This service includes various weblogic specific import statements. Is there any way to avoid these imports and implement the WS-Security in a more portable way?

Thanks in advance.

Kalai.
16 years ago
Hi All,

Is there any way by which I can find from which method a particular method has been called.



Thanks in advance.
17 years ago
Hi All,

Is there any free tool available in java to update the fields in RTF document.

The problem i am facing is: I am generating a RTF document, but when i open the file the fields are not updated. If I do a select all and update fields the document shows proper value. Is there any way i can update the fields in my java code.

Thanks.

=====
KALAI
17 years ago
Hi all,

Is there anyway by which i can print multiple copies of a pdf using Java Printing API.

Currently i am converting my PDF to a postscript file, but the attribute Copies doesn't seems to be working with "DocFlavor.INPUT_STREAM.POSTSCRIPT".

Thanks and Regards,
Kalai.
17 years ago
Hi,

I am trying to print 2 copies of a particular document, but it always print only one copy.

Here is my code:


In attributes i have added new Copies(2) attribute. My Input stream is POSTSCRIPT.

Any suggestion will be highly appreciated.

Thanks in Advance.

=====
KALAI
17 years ago
Hi all,

Is there any way by which i can set the message id in JMS message?

I tried calling setJMSMessageId in TextMessage, but i gets overidden by the JMS provider (I am using Websphere) when the message is sent using QueueSender. I also tried calling setDisableMessageID in QueueSender.


Thanks
======
Kalai.
Hi All,

Is there any Java tool availabe which can work with MS Word Templates?

I am basically looking for a tool which can work wit MSWord template and populate the template fields from database and send mail to the recipients.

Quick response will be highly appreaciated.

Thanks and Regards,
Kalai.
Thanks for the help Yuriy

We are not implementing the sample you gave, but it may be helpful in future.
Hi All,

Is it possible to display the horizontal scrollbar of the div element at the top instead of at the bottom. If yes, please tell me how?

Thanks and Regards,
Kalai.
Hi all,

suppose i have a method (e.g. getA() ) which returns object of type A. Which of the following two approach will be more efficient:

getA().set1("");
getA().set2("");
getA().set3("");
getA().set4("");

or

A a = getA();
a.set1("");
a.set2("");
a.set3("");
a.set4("");

Thanks in advance


=====
KALAI
[ April 19, 2006: Message edited by: Kalai Selvan ]
18 years ago