Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within OCPJWCD
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework
this week in the
Java in General
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
paul wheaton
Liutauras Vilda
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Devaka Cooray
Paul Clapham
Saloon Keepers:
Scott Selikoff
Tim Holloway
Piet Souris
Mikalai Zaikin
Frits Walraven
Bartenders:
Stephan van Hulst
Carey Brown
Forum:
Web Component Certification (OCEJWCD)
Cannot able to Find Methods
Gowher Naik
Ranch Hand
Posts: 643
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class TestMethod extends HttpServlet{ public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException{ PrintWriter out=response.getWriter(); out.println("<html><body>"); out.println("getHeader(User-Agent):"+request.getHeader("User-Agent")); out.println("getMethod(): "+request.getMethod()); out.println("getServerPort(): "+request.getServerPort()); out.println("getServerPort(): "+request.getRemotePort());//error out.println("getServerPort(): "+request.getLocalPort());//error out.println("</body></html>"); out.close(); } public void doGet(HttpServletRequest request,HttpServletResponseresponse) throws ServletException,IOException{ doPost(request,response); } }
In above code the compiler is not able to find following methods.
request.getLocalPort()
request.getRemotePort()
I am not able to understand why.
Thanks
Alexey Korneychuk
Greenhorn
Posts: 18
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi
These methods since 2.4 (not 2.3)
Are you sure that you are using 2.4
servlet
spec?
Gowher Naik
Ranch Hand
Posts: 643
posted 18 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Thanks Alexey
You are right i am using 2.3
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Servlet not being called
is setContentType Optional?
Servlet problems on Orion
How is the out.println() works
Hello world ejb3 problem
More...