Problem with "links" text browser

I cant access web applications especially servlet through "links" text browser. Can anybody knows more about "links"?. Initially I can able to see the index page of my webapps , but its throwing 'NullPointerException' after posting the request to the servlet. I dont know why I can't access through "links" what i can through normal browsers.

Any answers would be appreciated

Thanks

[404 byte] By [Ponmalara] at [2007-11-27 2:25:21]
# 1
Is there any Javascript involved?Where exactly is the NPE being thrown?
BalusCa at 2007-7-12 2:33:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
You are getting a null pointer. Wouldn't it be more informative to look through the stacktrace and see what piece of code is actually throwing that null pointer? All people here can do is guess endlessly what the problem could be.
gimbal2a at 2007-7-12 2:33:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Thanks, It throws NPE from jsp when rendering the objects bound on request
Ponmalara at 2007-7-12 2:33:33 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
I also asked: is there any JS involved? Well, at least just isolate and show the smallest possible full working and reproduceable code.
BalusCa at 2007-7-12 2:33:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5

Thank Balus,

Sorry!

I'm not using JS anywhere. I think the following error message might helpful to you.

I couldnt trace out anything from this, Can you please try your best?

java.lang.NullPointerException

at org.apache.jsp.view.index_jsp._jspService(index_jsp.java:110)

at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)

at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)

at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)

at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)

at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)

at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:473)

at org.mortbay.jetty.servlet.Dispatcher.dispatch(Dispatcher.java:286)

at org.mortbay.jetty.servlet.Dispatcher.forward(Dispatcher.java:171)

at org.mortbay.jetty.servlet.Default.handleGet(Default.java:302)

at org.mortbay.jetty.servlet.Default.service(Default.java:223)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)

at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)

at org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:473)

at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)

at org.mortbay.http.HttpContext.handle(HttpContext.java:1530)

at org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)

at org.mortbay.http.HttpContext.handle(HttpContext.java:1482)

at org.mortbay.jetty.plus.PlusWebAppContext.handle(PlusWebAppContext.java:158)

at org.mortbay.http.HttpServer.service(HttpServer.java:909)

at org.mortbay.http.HttpConnection.service(HttpConnection.java:816)

at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:982)

at org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)

at org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)

at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)

at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)

Ponmalara at 2007-7-12 2:33:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 6
at org.apache.jsp.view.index_jsp._jspService(index_jsp.java:110)Open the index.jsp in a good browser, view the generated HTML source and look at line 110. What's the backing code of this line?
BalusCa at 2007-7-12 2:33:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...