Tagged Questions

10
votes
2answers
973 views

Is it difficult to make a mainly stateless web application with Wicket?

I've been working with Wicket for month or two now, making simple web applications with it and getting used to models and so forth. Now I'd like to move forward and see if I can put what I've learned ...
5
votes
3answers
195 views

Are there techniques to prevent double submissions in stateless web applications?

I want to implement double submission prevention in an existing java web application (struts actually). Architecture wise we are talking about 2 to N possible application servers (tomcat) and one ...
5
votes
2answers
2k views

Stateless Session Beans vs. Singleton Session Beans

The Java EE 6 Tutorial says: To improve performance, you might choose a stateless session bean if it has any of these traits: The bean’s state has no data for a specific client. In a ...
2
votes
2answers
86 views

Design: Stateless Prototypes in Spring

I got used to create Spring beans for Service, DAO or Controller objects as Singletons. Well, it seems natural to me. Now a colleague of mine likes to make all such objects Prototypes. What can be ...
2
votes
1answer
92 views

How can I send XMPP messages after a successful transaction?

In my project I have all services designed as stateless session beans. During the workflow, new data is created and this should be reported back to the clients. I only want to send this messages when ...
2
votes
3answers
132 views

Stateless Blocking Server Design

A little help please. I am designing a stateless server that will have the following functionality: Client submits a job to the server. Client is blocked while the server tries to perform the job. ...
1
vote
1answer
410 views

Wicket: stateless AJAX behaviors in stateful page without serialization

I have pretty stateful page with plenty of AJAX components. Most of these components have behaviors, which renders JavaScript code for calling AJAX requests to Java code. Because page isn't stateless, ...
1
vote
2answers
130 views

need help in EJB stateless beans

I am new to EJB. I have a requirement of calling a method of remote stateless bean and setting a value, before calling any method on the same bean. The value set from first method call should be ...
1
vote
2answers
472 views

Static vs Instance members in Stateless EJBs

I have a stateless session bean which needs access to a factory class. Is it best to declare this factory class as a static or instance member in the SLSB? Am I correct in saying that, as SLSBs are ...
0
votes
0answers
220 views

How to create stateless webservice request from Java to Oracle CRM On Demand?

On the Internet i have find documentations to call Oracle CRM on demand web service but only using statefull mode (Jsessionid=Sessionidentifiant). Does anybody can explain me how to call Oracle CRM on ...
0
votes
1answer
181 views

Tracking whether user is logged-in in a stateless web application?

If I wanted to enable users to log in and out, what would be some good patterns of doing this in a stateless application? Also, what are the top security concerns? I am thinking of doing this in ...
0
votes
4answers
585 views

Java Persistance Application Stateless vs. Stateful

I am new in JPA and I can't understand the use and the difference between stateless and stateful. Any experiences? regards, Haythem
0
votes
1answer
124 views

Autonomous transaction in TopLink

I am facing a problem, I want to implement autonomous transaction in TopLink, but I am not too sure about if it is possible or not. I have a also worked on hibernate, as we have stateless session ...