Kalyani Nayak

Greenhorn
+ Follow
since Jan 01, 2006
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 Kalyani Nayak

Can anybody please help me in spring jdbcTemplate pattern.

I need to call a stored procedure which should return an out parameter as a cursor in <b>MS SQL.</b>
I am using struts2 (Entity Manager) in my application, I want to use commons control on UI side using common-controls-1.6.020.jar, but not able to get it working.
Any idea can we use commons control using struts2?
16 years ago
I heard about the 'Struts Layout' framework. It is great for the view part i.e. one form can be used in different modes I mean for each component we can define the mode to edit/readonl/disable something like that. And struts2 also has its own features like ActionSupport and OGNL.

How can I get benefits of both. Like using 'Struts Layout' framework using struts2. And is it advicable?

Also I want more to know abt the 'ValueStack' concept in struts2.

Any help will be appreciated. Thanks in advance.
16 years ago
It is very surprising but I faced one problem using StringTokenizer class.
I used 2 parameter constructor i.e. StringTokenizer("This is my : first token ::: This is my : second token",":::");
Now in above case if I tokenize the string it gives me 4 tokens as

This is my
first token
This is my
second token

Instead it should give me

This is my : first token
This is my : second token

I am confused why it is tokenizing for single ':' as my seperator token is ':::'

Any body has idea ?
16 years ago
Can please anybody help me out in the RS232 java API for Machintosh OS.
My requirement is to communicate from client to server through RS232 port, using java API?
I am using Apache Tomcat5.0, And Mysql5 .
In my web application I want to generate the primary keys.
I am using jsp and servlets technologies.
Just now I have designed it as follow
While creating new record I am fetching the max(id) from the corresponding table
Incrementing the value by one and adding in into create query.
This entire code I am writting in a 'synchronized' block to avoid concurrency.

Please let me know any disadvantages of such method, and if there is any better solution for it without using any third party jars.
Or if no, then please suggest me the better third party jar to generate the keys from servlet.
Hi All,
I want to develop a simple mibble browser in java (Swings).
The browser should be able to open multiple MIBs, already selected.
Any help will be appriciated.
17 years ago
In 'Head First EJB' book,
In the chapter 'Client View - Exposing Yourself'
on page no. 137, Under point 2)get the bean's home
I found one line a little confusing
'Even if you are capable of doing a jndi lookup on home, calling getEJBHome() on the bean is more efficient'.

Can anybody please explore this in detail.
I want to access the USB device to read/write data.
Which API I can use to access it from java.
I want OS indpendent APIs.
I dowloaded the JUSB zip, but it shows all source code, should I myself make the jar of it and copy to my lib?
Help will be appriciated.
17 years ago
I am getting a class not found error when I try to load an applet running from an HTTPS (SSL) server. It runs properly on a http server.

Any help would be appreciated.
17 years ago
I have used AJAX in my project (JSP), I want to implement AjaxAnyWhere taglib. Can anybody please give me a good link to study.
I searched on google, but it gives just a basic idea.
Also can anybody tell me the advantages of AjaxAnyWhere over AJAX ?
I understood the code to open the calendar html on any event in a new window,
but My requirement is to show a dynamic calendar (dates should be selectable)
along with my other static data on the same jsp.
As it is implemented in the www.mydiabetes.com web site. See the Diary tab in that.
Hi All,

I want to show one calender on my jsp page, that calender should be dynamic ( user should be able to change the date)
But I don't want to open it in a seperate window, but on the same jsp
Hi All,

I want to show one calender on my jsp page, that calender should be dynamic ( user should be able to change the date)
But I don't want to open it in a seperate window, but on the same jsp
17 years ago
JSP
I want to use hibernate in my project (from scrach), but not getting proper help.
How to start, which are the required files to do configuration etc.
Can anybody please give me some proper links to start with hibernate