0
votes
1answer
58 views

Bean scope not working

The code shows that I want to create a loginBean that's sessions scoped. I'll show the applicationContext too and also the service and dao because there may also be a configuration error in them. I ...
0
votes
1answer
374 views

Java - Servlet, Carry login information throughout project (session bean)

I have a login servlet, it works fine. But I would like for multiple servlets to be able to access the userID, valid, & facultyCB values to do different functions. I know the best way is with a ...
0
votes
0answers
21 views

spring session bean references another bean of different session

Is it safe if a session bean references another bean of different session and do some actions on that bean? How is the best way to maintaing that: I mean if a session expires I want the user that has ...
2
votes
1answer
86 views

Standalone EJB client local statless session bean lookup

As per my references the @Local session beans are accessible under same JVM which where the bean is deployed(client & server running on same JVM). I have implemented a simple statless local ...
-1
votes
1answer
67 views

error while creating session bean

i am trying the 'Hello World! with Remote Stateless Session Bean'example with glassfish3+ and netbeans 7.2 and while creating a session bean i have an error stating-"there is no suitable project ...
0
votes
0answers
25 views

Entity classes for session beans

for some reason my entity classes would show up when I'd try doing a session bean and then I noticed a class missing so I tried again than they'd be gone. I was toying around with it for some 10-15 ...
1
vote
1answer
178 views

SessionScoped controller not working

EDIT: Okay, so I tried setting a few console.writes to check what's happening... It seems my logout script is called upon navigation. But I don't call it anywhere except on my logout button. Here is ...
0
votes
2answers
78 views

Thread in java bean

I have a session bean in JSP, and in that bean I am starting a thread that sleeps for 10 sec and executes again. The problem I am facing is, after logging out also this thread continues to run. Can ...
0
votes
1answer
225 views

Data not retained in Spring session bean

I created a simple session scoped bean in Spring 3.1. It is supposed to give me easy access to the Company of the currently logged in user. @Component @Scope(value = "session", proxyMode = ...
1
vote
1answer
333 views

Screen resolution parameter setup, session bean and JSF Phase Listener

I am currently facing the following issue and I would appreciate if someone could help me out here. I am pretty new to JSF... I have a JSF application with the following architecture: The main ...
1
vote
2answers
77 views

Recording the user session on JBoss and returning different views based on the session

I have a JSF function which returns different views depending on certain information stored on the user currently viewing/manipulating the page. I.e. depending if the customer has a gold/silver/bronze ...
0
votes
0answers
195 views

Lookup failed in SessionBean. javax.naming.NamingException: Lookup failed for 'ejb/test/MySessionBean'

I have a servlet which starts Session Bean. Here are my files: web xml http://pastebin.com/PgW9iRgW index jsp http://pastebin.com/nVtevXz5 HomeInterface ...
0
votes
0answers
277 views

JSF multiple forms and multiple request scoped beans

firstly I would like to say thank you to everyone who participates on this site.. I've gotten much needed help from previously asked questions and the great responses. So I've only been working with ...
0
votes
1answer
450 views

problems with Stateless session bean with EJB3.0 and websphere6.1

**I am not able to create Stateless session bean with EJB3.0 and Websphere 6.1. I package everything in EAR file and deployed it on Websphere . I am trying to create a Stateless Session bean and ...
4
votes
2answers
2k views

Using a Stateful Session Bean to track an user's session

it's my first question here and I hope that I'm doing it right. I need to work on a Java EE project, so, before starting, I'm trying to do something simple and see if I can do that. I'm stuck with ...
1
vote
1answer
103 views

Instance variable in stateless session bean

I have a stateless session bean which has an instance variable and two public methods.Below is pseudo code of it. private int instanceVar; public void methodA(int x) { instanceVar = x; } public ...
1
vote
3answers
192 views

Servlets vs Beans

I need advice from experienced developers regarding the software architecture of a project. The need is to provide with a REST interface for an API so that a customer can : 1) authenticate themselves ...
0
votes
1answer
148 views

Persistent Data Object Implementation

I have a page where a user can edit a lot of information, right now about 100 lines worth of DDLs and a text area, I want to update a data object after each change so that I only have to save to the ...
0
votes
1answer
152 views

Maintaining state in a spring application?

Just looking for a bit if theory regarding maintaining state of something in a spring application. For example imagine a game of poker running as a web app. There are a number of things to consider. ...
0
votes
1answer
130 views

Serializable custom exception class?

Google App Engine requires me to make objects serializable before I can use it as a session bean. Now I have a Product class, I made this Product class serializable, but one of its constructors and ...
1
vote
1answer
6k views

How to pass parameters from Servlet via Bean to JSP page with the help of Session?

As mentioned below I have made changes to the code which looks like following example, but it doesn't show firstname and lastname in JSP: Servlet code: //.... HttpSession session = ...
1
vote
1answer
1k views

instance variables in stateless session beans

I have read this post and it doesn't answer my question. Stateless session bean with instance variables I am reading the JEE5 tutorial and on this page it states ...
1
vote
1answer
768 views

Spring 3.5 Session Bean Lifecycle

What triggers Spring's Session Bean to exist in the container, and what removes it? Basically, I want to understand the web flow's effect on Session Bean.
3
votes
4answers
3k views

Retrieving Web Session from a POJO Outside the Web Container

Is there any way to retrieve a session from a POJO? Or ultimately to retrieve a bean from a POJO. To clarify: Basically I am creating a bean from a servlet and I need to access the properties of ...
0
votes
1answer
3k views

Struts2 - Session Troubles

I make (thanks with some users on this portal) my application that implements SessionAware. This is my actual code : public class UserManager extends ActionSupport implements SessionAware { ...
0
votes
2answers
480 views

What does my Servlet have that my JSP is missing?

I am currently working my way through a Sam's Teach Yourself JSP. In one chapter, we wrote a crude shopping cart application which used Servlets for various functions. Come Chapter 14, we replace ...
0
votes
2answers
2k views

java session bean - reload data?

Here's what I want to do. It seems simple, but I can't get it to work. JSP1 - user fills out form, submits to JSP2. JSP2 populates the form values in a Bean and displays data, and offers user option ...
1
vote
2answers
2k views

How to call a EJB session bean from PHP?

Is there any way to call an EJB session bean from PHP? Are there any specific functions to do that?
-1
votes
1answer
750 views

struts 2 bean is not created

At first some precondition to my question, I'm using struts2 + tiles2 + toplink. NO spring at all. The simplest scenario - is to display list of entities on the page. To optimize resolving JPA's ...
1
vote
1answer
3k views

How do I set JSP UseBean values from a servlet

I am writing a web application that uses a JSP usebean tag in the session scope as shown below <jsp:useBean id="userSession" class="project.session.UserSession" scope="session" /> I have also ...
2
votes
1answer
261 views

Call a method of session beans that deployed on the remote machine

I wrote a EJB session beans and deployed it on the GlassFish application server. i can call it easily with @EJB annotation from a local JSF web application but i dont know how to call it from a JSF ...
2
votes
1answer
454 views

Threads in Session Beans

I have a session bean that uses Bean managed txns. This bean has one business method that simply delegates the control to a POJO which takes care of all the processing. Here this POJO starts and ...
0
votes
2answers
2k views

How can I get the content from a session variable?

My situation: On my jsp site I show a table. When somebody click a row, this row must be marked with an other backround color for example. Also more then one row can be marked. Two things are ...
0
votes
1answer
259 views

How can I get the content from a session variable?

My situation: On my jsp site I show a table. When somebody click a row, this row must be marked with an other backround color for example. Also more then one row can be marked. Two things are ...