Servlets :: Sessions Within Same War
Aug 14, 2014
Suppose we have two servlets runing inside same war on same server. When user access servlet A and create a session, he then open another tab or browser to access servlet B (session created by servlet A still exist). Inside servlet B, does
request.getSession()
return the session created by servlet A ?
View Replies
ADVERTISEMENT
Jul 22, 2014
I'm deployed application A and application B in TOMCAT server applications, the U1 user enters into the application A, he authenticates and generates a call to a page of the app B. As I was able to access the session of user U1 en A from B, it could have a single session.
View Replies
View Related
Jan 17, 2015
Okay I am new to web-programming in general and am confused about how sessions work-:
1) Are sessions stored only on the client computer ? If so then if cookies are disabled then if browsers only store the session how are they able to remember the exact JSESSIONID ? Also how does the server (like Tomcat) remember which JSESSIONID belongs to which user ? Where does it store that information ?
2) If the server also stores the session information then how fast does it become out of date ?
3) If a client has cookies disabled does the server maintain a key-value pair of the IP and the session-id, so that if the same client logs in then the same session-id will be appended ?
4) When does the web-container make the decision of using cookies or the encodeURL() method to embed the session info ?
I use Tomcat 8.0 for now.
View Replies
View Related
Apr 18, 2014
suppose a user logged in... after some time he want to get back to homepage...okk but suppose i want to get back to previous page by clicking back button on browser...but i dont want to go to login page until and unless i invalidate session...so wat settings i have to do on browser...so that i dont redirect to login page directly...
View Replies
View Related
May 30, 2006
how this is done using session.setMaxInactiveInterval(); at first, i did not set anything but it expires anyway.so i'm trying not to let the session expire.session.setMaxInactiveInterval(0) does not work.
View Replies
View Related
May 20, 2014
I am trying to use iText to create a PDF document. I found a nice tutorial online but one thing stumps me. How do I get the URL of the JSP page that contains the content? Since this will not be static, I don't want to hard code this. I am sure this is something simple but I am fairly new to servlets and JSP.
String File_To_Convert = "test.htm";
How do I get the url of the JSP page?
View Replies
View Related
Aug 10, 2014
Is it permitted or possible to use annotations on classic servlets?
E.g.:
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
[Code] ....
I tried to visit my webapp with /appinfo appended after the context url but I get a 404 and I see no errors in the GlassFish4 log.
My project is using JSF 2.x with the viewservlet mapped on *.xhtml and it is using Spring Beans as well (using the Spring Context Loader), mapped to /rest/*. Do I need to map something else?
I can only get this servlet working without annotations but only using the old web.xml way.
I don't know what I need to do to get my servlet working with annotations.
View Replies
View Related
Feb 4, 2015
I have a servlet that is not mapping to my URL:
<servlet-mapping>
<servlet-name>view</servlet-name>
<url-pattern>/View/*</url-pattern>
</servlet-mapping>
When I try to call the Servlet from a JSP:
<a href="/View/viewFlow?V1">V1</a>
The resulting link is [URL].... It's bypassing the project name. The link should be [URL]...
View Replies
View Related
Nov 25, 2014
I have my mapping as below
<servlet>
<servlet-name>main</servlet-name>
<servlet-class>co.edureka.controllers.MainController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
So that I can map the first request coming say www.xyz.net to my first page , it does the work but some of my css and images is not getting displayed .
So I did as below
<servlet>
<servlet-name>main</servlet-name>
<servlet-class>co.edureka.controllers.MainController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/first</url-pattern>
</servlet-mapping>
By doing this my css and images get displayed and everything works fine.
But the problem is I want to display my first page as user puts the url.
I am putting my jsp pages in WEB-INF/jsps , I am not putting it directly under WEB-CONTENT directory.
View Replies
View Related
Dec 20, 2014
I am new to Servlets and came across it in Head First Java 2nd Edition. I wrote the servlet code. I don't know how to run it. Do I need to set up a server?
View Replies
View Related
Apr 16, 2014
I'm trying to go back to basic and strengthen some of my foundation. I'm wondering what kind of data would be appropriate to be stored inside a session? My app is a web app where all the users are the employee of a company. So it's an web-based app that keeps track of stock movements, purchasing and sales order (standard distributor company). The web app interacts strictly with employees, so no public facing app (yes, that's right, no shopping cart). So, in this kind of web app, what kind of data that by storing it to session.
View Replies
View Related
Mar 25, 2014
I am calling a jsp page from my servlet using the requestdispatcher.forward(myjsp.jsp) method. myjsp.jsp is creating a new thread which is parallely processing along with the servlet. The issue is that the jsp page is not displayed until the servlet finishes its execution, although the new thread is created by jsp and is executing in parallel. How do we have the jsp page displayed even when the servlet is executing.
View Replies
View Related
Jan 30, 2014
I have a secured Struts application in WebSphere that uses FORM j_security_check for authentication.There is also a Post Logon "filter" defined which runs some code after a login is processed.The extract from web.xml showing the login configuration and filter is as follows:
<login-config>
<auth-method>FORM</auth-method>
<realm-name>MyRealm</realm-name>
<form-login-config>
<form-login-page>/login.html</form-login-page>
<form-error-page>/error.html</form-error-page>
[code]....
If a user isn't logged into the application and they try to access one of the secured servlets, for example quotes.do, they are directed to the login page to enter their information.If they login successfully, they are then directed to quotes.do, rather than the default "welcome" page. Is there a setting in the web.xml or the post logon filter where I can force j_security_check to ALWAYS go to the default welcome page after a successful login?
View Replies
View Related
Jan 29, 2015
I need to encode the URL in order to prevent XSS security threat. I don't have to encode the complete URL, I just have to encode the values for query string. How to encode only the values of query string parameters and change it in the URL itself using java. I am planning to do this in a filter.
View Replies
View Related
Jan 22, 2014
I am trying to finish this servlet that adds a new course to my courses display. im using a check box so the user can pick what the prerequisite are for the new course they want to add. so if they check cs201 , it will add cs201 as a prerequisite for that new course.
for some reason my checkbox will only add the first checkbox that is clicked. like if i add a subject , and click the check boxs for cs203 , cs202, and cs201. it will only grab cs201 and add it to my course display. it wont grab all 3. how can i grab the other info thats checked?
package cs320Homework1.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
[Code] .....
View Replies
View Related
Feb 18, 2015
I am seen that ASP.NET apps have a handy feature called URL Routing. How will one implement this in Java without the use of heavy frameworks like Spring MVC ? How do you even begin writing a URL Router if there isn't anything available?
View Replies
View Related
May 22, 2014
I have to convert servlet into jsp. but i dnt know how to convert servlet into jsp.This is my Servlet
package com.example.imagecalculation;
import java.awt.List;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.Iterator;
import java.io.File;
[code]....
View Replies
View Related
Jun 17, 2014
I did a Servlet and a JSP with a combobox. I called the JSP on one browser and selected value n1 from the combobox. From another computer, I called the (same URL) and selected value n2. I expected the Servlet to handled both requests separately, however when I select value n2 on the 2nd browser, the jsp on the 1st browser that initially had value 1, now changes into value 2 as well.
Why cant the servlet handle requests separately? users actions on different browsers should not interfere with each other..!
View Replies
View Related
Jul 9, 2014
Can I reload a particular div tag of jsp file from servlet?
View Replies
View Related
Jun 30, 2014
I am trying to build a basic online exam app.But not able to find out how to do that.So user will log in , click on start exam That will be handled by servlet , servlet should call Model class that will fetch questions from database and make a list of those questions and return it to servlet.Than servlet will set that list as an attribute.
and redirect to jsp , which will have three buttons previous ,next ,finish.on clicking on finish I will call servlet wichich will calla model class which returns users score and then servlet redirects to result.jsp.Is this way is right ?
View Replies
View Related
Aug 11, 2014
I have good knowledge of servlet,jsp. I've also worked on mvc pattern and now looking to learn a web framework but i'm not sure which to choose between spring mvc OR struts.Should i first do struts and then go for spring or can i choose spring directly?
View Replies
View Related
Mar 19, 2014
i have created a table in jsp, i want to obtain the contents of a td at the servlet.For example, here's one td of table:
<td align="center" title="tdun" id="cat"> <%= categoryname %> </td>
I want to get this value in my servlet .
View Replies
View Related
Feb 5, 2014
I have a data.json in my J2EE web app.I need to load it either from local path when unit testing or from url when the server starts up.
so I've set it to get the local path by default and what I'm trying to do is that it is is running on a server, I'd like to change the path to a url.
Here is my code:
public String getUrlBase(HttpServletRequest request) {
URL requestUrl;
try {
requestUrl = new URL(request.getRequestURL().toString());
String portString = requestUrl.getPort() == -1 ? "" : ":" + requestUrl.getPort();
return requestUrl.getProtocol() + "://" + requestUrl.getHost() + portString + request.getContextPath() + "/";
} catch (MalformedURLException e) {
e.printStackTrace();
}
return null;
}
which works fine. The only issue is that I had to place this in the login page. Is there a way I can only set the path to the base url upon server start up?
View Replies
View Related
Sep 24, 2014
A data entry form is on the front end. This allows one to enter say emails, addresses, etc. It utilizes a jsp, jstl, servlets, and beans. The backend sql has say a size of 50 for email. If more than 50 char are entered on the form, w/o any intervention, a truncation error is thrown. A static class was set up to hold the input element names and max sizes. It seems to work well keeping all in check, names and sizes on form, names in servlets, size of sql.
servlet
req.setAttribute(elementname, elementobject)
jsp
maxlength="${date.maxLength}"
name="${date.inputName}" //setattribute objects
servlet
.getInputElement("date").getInputName() //static map...shared with above objects
Is there any other system of keeping everything in sync. I am building it all, but I was wondering how this is parsed out if there are separate sql, middle-tier, and front-end developer? It seems better just to have good documentation that would be shared between the different implementers.
View Replies
View Related
Nov 10, 2014
I have Filter that is randomly being called and randomly not being called without any logical reason...The mapping is very simple:
<filter>
<filter-name>MyFilter</filter-name>
<filter-class>com.me.MyFilter</filter-class>
<init-param>
<param-name>ignorePaths</param-name>
<param-value>res/</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>MyFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
[code]....
So, init is called, so it works... but most of the time the doFilter method is not being called at all... what am I doing wrong?
View Replies
View Related
Feb 19, 2015
Inspite of not returning anything, what is the purpose of response object in servlet? I have typically used or heard of only response.sendRedirect()
View Replies
View Related