Krish

Greenhorn
+ Follow
since Jul 18, 2002
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 Krish

Thanks Geoffrey.
I can't do the looping of keys because the number of keys in the hash is high(atleast 5000 keys).
I checked with Lucene too but they seem to be providing text level search and not w.r.to objects (unless I've overlooked).
Any other suggestions :roll:

Thanks
Anand
18 years ago
Hi,
I need to have sql's LIKE operation in hashtable(or anyother collection object) key lookup. Any idea how to do it.
Eg :
Hashtable hash = new Hashtable();
hash.put("KEY_1234","ONE");
hash.put("KEY_5236","ONE");
hash.put("KEY_6278","ONE");

hash.get("KEY_%23%"); --> should return KEY_1234 and KEY_5236.

Any idea how to do it without looping through the hash

Thanks
Anand
18 years ago
Hi,
I've been working in J2EE related technologies more than 4 years.
Also I've done several projects in MQSeries + J2EE. In recent past lot of recruiters offering me job in MQ Series,MQ Workflow.
So I jus wanted to know abt the MQ job market.Basically I'm looking for overseas(US,AUS,UK,etc...) job market for MQ.
I've an overseas experience(Singapore,US) and domain expertise(Banking,Finanace,etc...).
Also I'm going to visit to US in B1 in coming months.
So it would be great if u could suggest abt this.
Thanks and Regards
Krish
20 years ago
Hi,
I'm using Adobe's FDFToolkit(jar) to create the pdf file.
The content of the pdf will be in Chinese character.Is there a way to do this.
Or can somebody suggest me any third party jar which'll support the pdf creation for Chinese characters.
Thanks and Regards
Anand
20 years ago
Yeah I understad.
Thanks for all the replies.
As I'm a co-ordinator of multiple projects(in development time),I'm jus wondering if there is a way to put some kind of logical togetherness(something similar to VAJ proj) :roll:
In my opinion,I miss VAJ very much!!!
Hey,
In that case, as a developer if I'm working in more than 1 project (assuming that all've features such as servelts,jsp,ejb,etc..) I'll certainly get confused abt organisation of my workbench.There is no way I can say all these bits and pieces is one unit.
How did u address this issue in ur development environment? Can u give an eg pls.
Thanks
Anand
Hi,
I've used VAJ and I'm new to WSAD 5.
I've a basic problem with the way projects are organised in WSAD.
For Eg,I've a project called XYZ which has serveral
Servlets,JSPs,ClassFiles and EJBs.
In VAJ I create all these under a same project.But in case of WSAD
,what my understanding is that I've to create J2EE project which
comprise of XYZWeb,XYZEJB,XYZClient.
I don't understand the logic why it has to create 3 different
projects for a single project XYZ.If that is the way I've to work with
WSAD is there a way to LINK & VIEW all these projects
(XYZWeb,XYZEJB,XYZClient) in a single logical unit.
Please correct me if I'm wrong in my understanding,I'm very new to
WSAD but familiar with VAJ. Thanks.
Anand
Hi ,
Is there a way to handle TimeoutException in EJB stateless session bean.
eg: I'm using a SessionBean which does some
try {
step-1
step-2
step-3
step-4
} catch (Exception e) {}

In this flow suppose if the bean got timed out in step-3,how can I hadle it gracefully.Thanks for ur response in advance.
Regards
Anand