Amaresh Saha

Greenhorn
+ Follow
since Mar 24, 2007
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 Amaresh Saha

I am also considering the following models
HP dv 6516 tx
Toshiba M200 Satelite series

Please suggest in terms of the followings among Dell,Toshiba,HP,Lenovo
performance,battery life,customer care etc.

I will be running Servers, IDEs

Olease help me in this regard.

Regards,

Amaresh
16 years ago
Jesus, Cameron Thanks for your comments.

Any feedback on brand name. I am not opting for Dell as there is no Dell service center in India.

How is Lenovo ?? Any particular model ??

Regards,
Amaresh
16 years ago
I am planning to purchase a Laptop. But I have been confused over the comments of diffrent people on diffrent brands.
I have explored few models from Dell, HP, Lenovo.

Among them I have shortlisted the follwing :
Lenovo Y500 776146Q
Lenovo Y500 776145Q
HP Pavilion DV 2401 TU

How are the feedback of Lenovo and HP ??

Please help me in this regard.
16 years ago
In my application there are few web services,
1) Webservice1 takes input of Person object and returns Person object
2) Webservice2 takes input of Student object and returns Student object
3) Webservice3 takes input of Employee object and returns Employee object

The requirement is that -
instead of publishing all these webservices, shall i publish only one web service, which will take input of Object object and return object of Object object.

Within the web-service , I will expose a method say
Object callMe(Object o)
{
if(o instanceof Person)
{
..............
}
else if(o instanceof Student)
{
...............
}
return o;
}

Is it feasible ??

Regards,
Amresh
16 years ago