The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
14 views

What is the life of @Stateless EJB injected into JSF @SessionScoped?

I'm converting some code to take advantage of EJB 3 and I've come up with a scenario where I have a @Stateless EJB being injected into JSF Managed bean that is annotated with @SessionScoped. I was ...
0
votes
0answers
22 views

Why Spring MVC creates session for each restful request?

I have create Restful web service using Spring MVC. As theory says Restful request is stateless, mean no session is required. But what I have observed with Spring MVC is that for each Restful ...
-2
votes
1answer
50 views

State machines everywhere? [closed]

After learning about state machines, I want to place it in every class of my code. That's a great pleasure for me to declaratively (or "fluently") construct a machine, handle events and be sure that ...
0
votes
1answer
16 views

Handling large object in stateless environment

We have various windows services that load up a large amount of data i.e. mostly settings, from a database into an object which is used whenever calls are made to our various .net remoting functions ...
0
votes
1answer
30 views

Synchronized block in stateless EJB

Is it okay to have a synchronized block in a stateless EJB in EJB 3.1? The synchronized block is for renewing a connection on connection errors.
0
votes
1answer
94 views

Restful (and Stateless) Auth with Play Framework and Scala

I have recently been thinking about how to get my webframework/application-stack right. I'm slowly moving over to scala and functional programming (coming from Python with CherryPy). So it was natural ...
0
votes
0answers
12 views

Does a request to a stateful server have to provide a full set of arguments?

I know a stateless server must be provided a full set of arguments, but I'm not sure the same is true for a stateful server. Also, can you use coaching to improve the performance of a stateless ...
0
votes
3answers
85 views

JEE6 EJB tutorial : why not using @Singleton instead of @Stateless

I looking at one EJB sample from the JEE6 tutorial. In This example, I want to know if I could just use @Singleton instead of @Stateless ? package converter.ejb; import java.math.BigDecimal; import ...
0
votes
1answer
23 views

EJB @Stateless bean with two clients on different methods and poolsize = 1

Please help me understand @Stateless EJB 3 beans. If I have a bean with two methods and pool size 1, could two clients have simultaneous access to this bean provided that they call different methods ...
2
votes
1answer
133 views

Stateless Spring Security usage

I need your help with stateless Spring Security. I wrote service that authorize user, my security.xml: <http use-expressions="true" create-session="stateless" ...
0
votes
1answer
385 views

javax.ejb.CreateException: Could not create stateless EJB

I'm using netbean 6.7.1 Glassfish v2.1 ... I'm trying to create message driven bean. App A (using session bean, create map message) --> App B (message driven bean located here). @Stateless public ...
0
votes
1answer
99 views

injected statless bean into managed bean gives nullpointer

I have a ManagedBean that getts a stateless bean injected but it always gives me a nullpointer for the injection. What am I doing wrong here? (I´m learning JSF and its just an example so please ignore ...
1
vote
1answer
225 views

Python micro-framework for RESTful applications? [closed]

Previously I have been using web2py, it's quite good but a little heavy for my purposes. Basically I am seeking a Python microframework with: Automatic no-arg function -> controller (endpoint) ...
0
votes
1answer
67 views

why stateless and stateful session bean behaves not as expected

public class Test1(){ public vod method1(){ try{ Hashtable<String, String> env = new Hashtable<String, String>(); env.put(Context.INITIAL_CONTEXT_FACTORY, ...
2
votes
1answer
382 views

How to do authentication with a REST API right? (Browser + Native clients)

I'm building a web application using Rails. At the moment I'm using Devise with HTTP sessions which was pretty easy to set up and it's working well. The application consists of one URL providing an ...
1
vote
1answer
120 views

How to set timeout value for a @WebMethod in a @Stateless bean?

I am trying to figure out if it is possible to set the timeout value for a web method in a @Stateless bean. Or even if it is possible. I have searched quite a bit and found nothing related to this ...
0
votes
1answer
50 views

Backbone Collection acting as linked list and persisting models

Hi I'll need your help on the following: I've defined Backbone Collection which acts as a linked list: each Model in the Collection has a reference to its predecessor as well as successor. ...
0
votes
2answers
145 views

Stateless wicket page still having page version URL parameter appended - how to debug?

I am trying to make a page of my project completely stateless (more pages to come) and by doing get rid of the page version number, e.g. /mypage/?0 The page sets statelessHint to true, I have also ...
0
votes
0answers
52 views

EJB (Local/Stateless) JDNI Lookup

I have looked around for information on this, but it's been strangely impossible to find. I want to know this: does one have to do anything specific for @Local/@Stateless beans to show up in JNDI? I ...
0
votes
1answer
94 views

Stateless is not working in AS 7

I'm getting this: [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/PontoComentario].[jsp]] (http--0.0.0.0-8080-2) Servlet.service() for servlet jsp threw exception: ...
1
vote
1answer
263 views

EF Code First Detached Entity not updating object reference

I'm posting the exact entity: public class Person : ContactableEntity { public Plan Plan { get; set; } public int Record { get; set; } public int PersonTypeValue { get; set; } } ...
7
votes
2answers
194 views

What does REST's principle of statelessness actually means?

After reading the introductory articles on REST (Fielding's thesis and other) my perception of statelessness is that there should be no session objects on the server side. Yet, i see Flask (and maybe ...
4
votes
3answers
1k views

Why say that HTTP is a stateless protocol?

HTTP have HTTP Cookies. Cookies allow to "server" track the user state, number connections, last connection, etc. HTTP have Persistent Connections (Keep-alive), several requests can be send in same ...
4
votes
3answers
136 views

What is the difference between stateless and immutable?

I often hear the term "Stateless" and "Immutable". For example, HTTP is a stateless protocol, and a String object is an immutable object. But I have a hard time grasping the difference between the ...
0
votes
0answers
106 views

Stateful objects, properties and parameter-less methods in favour of stateless objects, parameters and return values

I find this class definition a bit odd: http://www.extremeoptimization.com/Documentation/Reference/Extreme.Mathematics.LinearAlgebra.SingleLeastSquaresSolver_Members.aspx The Solve method does have a ...
0
votes
1answer
189 views

Authentication in stateless API service - is it secure?

Are there any standard practices for dealing with stateless authentication? I am creating an API server and would like for each request to be signed by the client, in such a way that I can guarantee ...
0
votes
0answers
63 views

showing updated datas on a jsp page using stateless session beans

Hi all I am new to EJB and now i have created a JSP Page and used EJB to find the datas corresponding to the primary key. I have created a page to delete a row from database. the delete query is ...
4
votes
1answer
257 views

JSF vs CDI SessionScope has odd effects on Statelss EJB transaction. Can anyone explain?

I've got a SessionScoped managed bean (UserInfoController) with an Injected Stateless Session Bean (UserInfoService). UserInfoController calls the UserInfoService to update UserInfo records. The ...
0
votes
2answers
226 views

jsp and java beans

I am building jsp pages hosted on tomcat and am wondering if the bean instances referenced in each jsp are stateless / stateful? How do those bean instances come about? Are they (re-)created each time ...
3
votes
2answers
76 views

Unique Constraint in a RESTFul architecture

With 15 years of stateful client-server software development experience (and it's inherent problems) I'm still trying to grasp the concept of statelessness in a RestFul architecture. Suppose I have a ...
1
vote
0answers
172 views

Method annotated with @Schedule doesnt work with dependency jboss.ha:service=HASingletonDeployer,type=Barrier

I have one clustered-application with 2 nodes running in jboss 6.1.0.Final. I have some stateless beans that need to execute some tasks at scheduled times. It is using EJB 3.1 timer service. Here is ...
0
votes
0answers
38 views

Stateless models and defining APIs

Let's suppose we have a few models that all adhere to the API, consisting of the requirement that there be a compute() method that spits out some scalars. Classes that stick to this model can then be ...
0
votes
0answers
50 views

How does HTTP connection relate to HTTP statelessness?

While reading the theory of HTTP, I came across the following statement on the internet: Like most network protocols, HTTP uses the client-server model. An HTTP client opens a connection and ...
1
vote
1answer
112 views

How to remove stateless entity Java persistence

I have the following situation with Java persistence: public ReturnCodes startWork() { sessionBackup = (BaseService<Backup>) ctx.lookup("XYZ/BackupServiceImpl/local"); Backup backup = ...
1
vote
1answer
113 views

How stateful should a web application be at most?

I heard a web application should be as stateless as possible. But it seems to me very hard to realize this often. For instance, what if I: Process a request Redirect the user to the start page Want ...
0
votes
1answer
564 views

OAuth 2.0. No session? (stateless)

I'm going to implement OAuth 2.0 and REST API with it to grant different permissions per users and also to scale well. To scale well, stateless is easier because there is NO file, database, ...
0
votes
1answer
191 views

Intial Context Lookup returns same instance | Inject stateless EJB in Pojo

I am trying to inject a EJB in POJO by using context lookup. What I am expecting is a stateless behavior of EJB as you get when you do a @EJB annotation The EJB has a entityManager which I get ...
0
votes
1answer
347 views

Glassfish-3.1.2 - Can I inject EntityManger into a stateless bean

I came across this blog below, concerning Servlets and injecting EJBs into them. The author is writing from a standards point-of-view. ...
2
votes
0answers
187 views

Stateless or stateful c# actors

I'm designing a project which will activate and control many asynchronous actors simultaneously. I'd like to ask, which approach should I use for more stability and scalability? Stateless or ...
2
votes
1answer
399 views

thread safe, stateless design using Spring

I have assumed that if instance variables are managed by spring IOC, and are singletons that the desgin can be called stateless and threadsafe.This type of desgin could consequently be scaled to ...
1
vote
2answers
102 views

How to access a SFSB within a Stateless Session Bean

I am creating an application where a java swing client is connected to EJB via a remote interface. Now, once the client has logged in, is it possible for the stateless ejb to obtain client specific ...
0
votes
1answer
116 views

HTTP persistent connection vs Stateless Web

If HTTP persistent connection is kept alive and done on the same socket with out dropping a socket or creating a new one for next HTTP connection. Then how come that HTTP is stateless and each HTTP ...
1
vote
2answers
576 views

How do I use FeedbackPanel in a stateless Wicket application?

I have an application using FeedbackPanel to show the user the results of posting forms. On calling Component#info(String) on pages which are stateless, Wicket does appear to be putting that string ...
1
vote
2answers
822 views

How can I make Wicket's “AjaxLink” Stateless?

I am building a Wicket web application which is going to have to handle a lot of simultaneous requests. I've setup a test environment and some jmeter scripts to do load testing and I notice I can ...
2
votes
1answer
268 views

@Stateless bean with @EJB guaranteed to be a unique ejb instance?

I was wondering... Let's say that I have two stateless beans in ejb 3.1: @Stateless Class1 @EJB MyUniqueInstanceBean uniqueBean1; 2. @Stateless Class2 @EJB MyUniqueInstanceBean uniqueBean2; ...
3
votes
2answers
264 views

Multithreading (Stateless Classes)

Apologies for the long code post but am wondering if someone can help with a multithreading question (I am quite new to multi-threading). I am trying to design a facade class to a RESTFUL web services ...
3
votes
1answer
446 views

@Stateless Session Bean acts as a @Singleton Bean

Im trying out an example with EJB Session Beans. I wanna see the differences them. My basic projects diagram is below ; http://img109.imageshack.us/img109/8262/85220418.png Project is like a ...
0
votes
1answer
557 views

What exactly web service being stateless imply???? In case of soap over HTTP

I had a concept HTTP is stateless so soap over HTTP is stateless for web service. I was used to think state means "state of the object" i.e. Supoose I have a class Employee and method setSalary and ...
1
vote
1answer
167 views

Java JAX-WS multiple web services for fail over configuration and architecture

I have a java Swing application client and multiple glassfish servers with different names running copies of the same Stateless EJB JAX-WS for fail over. First, is this a proper way to set up fail ...
1
vote
3answers
267 views

Can I use instance variables in stateless session bean?

I know that stateless bean doesn't maintain controversial state but what I need is just a logger. Should I get logger in every method which is called? If not then where should I initialize it? Is ...

1 2 3