hide « URL « JSP-Servlet Q&A





1. How to hide the .jsp extension in my web server urls    stackoverflow.com

I have a JSP web server, with pages that all end with the .jsp extension. How can I hide it in my web server urls without resorting to non-java tricks (e.g., apache ...

2. How to hide my url params?    stackoverflow.com

I've got several Portlets with some links in them, all I want is to hide the URL params. So I thought it would be easy to include some jQuery code, which ...

3. Hiding java package structure in url    stackoverflow.com

Our current web application url reveals the class package structure to the end user. This is because in web.xml the servlet mapping tag is as follows Servlet_ name /servlet/com.xxx.yyy.ClassName Is there any way by ...

4. How to hide an email address as a url parameter    stackoverflow.com

I want to pass an email address as a parameter in a URL string but hide it. The URL string is constructed in a Java routine and the jsp page ...

5. Struts - redirect a jsp to another jsp by hiding parameters in the URL    stackoverflow.com

I have a struts application , where jsp1 has to redirect to another jsp on different server.While doing this I also want to send the parameters to other application and hide ...

6. Hide the .jsp url extension in struts2 project    stackoverflow.com

I am working in the struts2 web application.I want to do the mapping of my url such that the extensions like ".jsp" should be eliminated from the url. So below is the ...

7. How to hide the parameters in the URL??    coderanch.com

Hi, I am calling a jsp program passing some parameters and in the URL I am seeing those parameters. If I change the parameter value at URL address and refresh the page , it pulls back the information of the newly enter parameter. I feel it is not a secured one. Please suggest me ideas to hide parameters in the URL ...

8. hide vars on the url    coderanch.com

hi, the values are not passwords or things like that, for that things im using sessions, but i cannot use POST because im using enctype="multipart/form-data" on the form and i get an error using post, also in anothers ones im using javascript like document.postForm.action='post.jsp?forumID=<%=forumID%>&prev=yes&att=<%=hasAttachment%>'; so do you have any suggestion to hide those values? thanks in advance.





10. How to hide a variable coming in URL    coderanch.com

Hi i have created 1 jsp page and i have 1 link in that: Click here now what i want to do is that when user click the link then obviously he will go to the respective page, but i want that in URL he will not be able to see the id in url, i appended it with the ...

11. Hiding URL from source    coderanch.com

If it's paid content, merely hiding the URL would be insufficient. You should put the content in a directory that can't be seen directly from the web. Then, write a servlet that streams the content to the browser after checking for a valid login. We have an example app in our CodeBarn that streams images from under the WEB-INF directory (which ...

12. Hiding parameters from URL    coderanch.com

Hi is there any way by which i can hide Parameters in URL. I have to use "post" method only. I am hardcoding parameters in URL from a jsp page... then submitting the page...to another jsp.. now in this second jsp these parameters could be sen at URL... i want to hide these Parameters..... Is there any approach by which i ...

13. how to hide parameter in url    coderanch.com

14. Url hiding    coderanch.com

If this decision is in your control (I know sometimes it isn't), then you might want to rethink whether having the parameters in the URL is truly a security concern. By viewing the HTML source (right-click > View Source in Explorer), anyone can see all the parameter names and values (that aren't user-input). Since the browser is sending this information to ...

15. hide parameters on url jsp    coderanch.com

16. hiding attributes of URL    coderanch.com

You can stop the information appearing in the address bar by using forms and the "POST" method to submit requests. That doesn't help with links or GET requests from forms. A hacky approach(not recommended, but would probably work) is to use a frameset in your application, and have the navigation happen on an internal frame. Because the top level frameset doesn't ...





17. hide url in jsp    forums.oracle.com

OP, if your JSPs allow direct access to a database, throw them away NOW! JSPs should be used for display purposes only. To modify the contents of the database, a JSP form can be displayed that should POST to a servlet that validates the input. This servlet should be protected to allow access only to authorized users. Note that there is ...