Karthikeyan Bhaskaran

Greenhorn
+ Follow
since Jul 02, 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 Karthikeyan Bhaskaran

Thanks Yaron. Do you know if it is possible with pre-Axis2 at all?
14 years ago
Hello Everybody,

I've been looking up on the internet for information about support for WsHttpBinding and Apache Axis (not Axis2), and java-based client for consuming a .NET WCF .svc type webservice. ( I did not face any problems using a .asmx service. )
However, I have not been able to locate such information in plain English. Even if I did actually land on a page which might have provided useful information, I do not understand the language used on many such pages. Can somebody throw some light on whether WsHttpBinding is supported in Apache Axis (pre-Axis2)? This will immensely help me troubleshoot one of the issues I have been having.

Regards,

Karthikeyan
14 years ago
Thanks for the responses.

The JSP has only the Search field - no SQL. A button-click invokes a servlet which retrieves the results from DB. My search retrieves only case-sensitive results for 'doyle'. I am trying to see if at all there is any possibility of pushing the database to give me case-insensitive results by making only changes to the JSP such as generate all possible cases for an input String and then retrieve all records for doyle, Doyle, etc.
But, I guess that will corrupt the JSP into doing more than what JSP is supposed to do.

Thank you for your time.
Hi everybody,

Maybe I'm posting (I've posted) this in the wrong forum. Apologies.

In a JSP with a Search field, would it be possible to retrieve results for case insensitive combinations of 'abc' from a JSP-level modification?

For example, if I enter "doyle" in the Search box to invoke a "select * from BOOKS where AUTHOR='doyle'" through a servlet, is it possible to retrieve results for Doyle, doyle, DOYLE etc, through some modification at the JSP level?

Thanks in advance.

Karthikeyan.