sridhar ponnusamy

Greenhorn
+ Follow
since Sep 07, 2008
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 sridhar ponnusamy

hi
what is the primary difference between jsp and jspx, other than xhtml compliant?

thanks in advance
sridhar
14 years ago
JSP
thank you very much for all replies. Now i got an idea.....
hi greeting,

For creating google suggestion kind of functionality ( on key press retrive a list of results) :
1) query the SQL table and fetching the records(using JDBC) every time based on key press.
2) fetch the records made to objects , put in a list and serialized already. on key press deserialize that list, manipulate the list(check for startswith()) and showing the results.

which approach is best

thanks in advance
Sridhar
yes i noticed, so many methods are there...but am running server locally,hence am getting localhost,8080....etc thats why am asking which method will meet my requirement....
15 years ago
yes thanks...but which method returns that "www.myapp.com"
15 years ago
which HttpServletRequest method returns host
for eg: my servletpath is http://www.myapp.com/myservlet/myaction.do

which method returns this "www.myapp.com"

thanks in advance
15 years ago
which is mainly used for getting large amount of data(other than form data) from request.
15 years ago
There are two things ,which makes EL not evaluated.

1)Entry in web.xml
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored> true </el-ignored>
</jsp-property-group>
</jsp-config>

2)<%@ page isELIgnored=�true� %>

please check for it...
15 years ago
JSP
use Arrays.binarySearch(Object[] a, Object key); ..if it matches your requirements.
15 years ago
use context file. like this :

<Context docBase="D:\MYAPP" path="/myapp" debug="99" reloadable="true">
</Context>

create a xml with above tag. Attribute docBase refers to app root and path refers your app context. Name this xml file like "myapp.xml" (its not hard and fast rule...but its a convention). Place it in tomcat\conf\Catalina\localhost

start the server.......

This will help you

-- sree
15 years ago
Manually deleted the content from tomcat/webapps?
15 years ago
how you undeployed?
[ September 11, 2008: Message edited by: Ulf Dittmer ]
15 years ago
thankz sathya..am also looking for it

15 years ago
hi bittoo garg ..i was answering to rajender polu's query....
15 years ago
yes seetharam .its really very unlike to override service method...i should have quote "regardless of which method(POST,GET) it comes..we can call doGet() (which you have all the implementations)"

thanks
15 years ago