A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
Win a copy of
Arduino in Action
this week in the
General Computing
forum!
A special promo:
Enter your blog post or vote on a blogger to be featured in an upcoming Journal
JavaRanch
»
Java Forums
»
Java
»
Servlets
Author
Security For my web-application
Sarath Koiloth Ramath
Ranch Hand
Joined: May 07, 2008
Posts: 52
posted
Jan 24, 2009 01:39:14
0
Hi Friends,
I need my web-application to be accesses from certian Ip addess.How can i acheive this ?
Thank in advance
J 4 Java
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35445
9
posted
Jan 24, 2009 01:55:05
0
HttpServletRequest.getRemoteAddr returns the IP address from where the request originates. You can compare that with the list of approved addresses, and return an error (maybe 403 - SC_FORBIDDEN) if it's not in that list.
Android apps
–
ImageJ plugins
–
Java web charts
Pat Farrell
Rancher
Joined: Aug 11, 2007
Posts: 4442
2
I like...
posted
Jan 24, 2009 11:16:56
0
Of course, IP addresses are fairly easy to spoof, so if you want real security, you can't rely on the client's TCP/IP address.
I agree. Here's the link:
http://zeroturnaround.com/jrebel
- it saves me about five hours per week
subject: Security For my web-application
Similar Threads
stop synchronous web service call
Need a good website or book which walks me through developing a J2EE Web Application
security sandbox error while accessing applet from client machine.
How to increase number of parellel ajax hits from same user!!
how do I deploy/run two web apps in one jboss6 Application Server
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter