Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
3k views

How good and/or necessary are Stateful Web Services?

What kind of server do you people see in real projects? 1) Web Services MUST be stateless: Basically you must send username/password with every request, every request must use HTTPS and I will ...
6
votes
4answers
481 views

How to keep statefull web clients in sync, when multiple clients are looking at the same data?

In a RIA web client, created with GWT, the state is maintained in the web client, while the server is (almost) stateless (this is the preferred technique to keep the site scalable). However, if ...
5
votes
3answers
135 views

advantages of stateful programming? [closed]

i was wondering about the benefits of stateless programming, and found someone who shared my question: Advantages of stateless programming? as i read through the answers though, it made me curious ...
5
votes
2answers
770 views

Are WCF services stateless by default?

I've got a simple WCF service that lets clients/consumer applications log in by providing a username and password. If both the username and password are correct, the WCF service provides the client ...
5
votes
2answers
644 views

How does Scala's Lift manage state?

I'm quite impressed by what Lift 2.0 brings to the table with Actors and StatefulSnippets, etc, but I'm a little worried about the memory overhead of these things. My question is twofold: How does ...
5
votes
1answer
1k views

Stateful EJBs in web application?

I never used stateful EJBs. I understand that a stateful EJB can be useful with a java client. But i wonder: in which case to use them on a web application? And how? Should we put these stateful ...
4
votes
4answers
752 views

Stateful tail (only shows the new lines from the last execution)

I want to be able to see how many lines were added to a file since the last quering without reading the whole file again. Something like : ptail my_file | fgrep "[ERROR]" | wc -l A solution in ...
3
votes
0answers
115 views

JSF 2 (PrimeFaces) - Is it good for high traffic applications [closed]

Is JSF good for high traffic applications? I'm working on a application and I noticed that it does many resource requests for single page. Its client-server stateful approach makes me think it is not ...
3
votes
2answers
838 views

Stateless vs Stateful - I could use some concrete information

This is my first post on stack overflow, and I got here because I'm reading a book by Jon Skeet (you probably already know which one I'm talking about) - C# in depth, really nice book, and he said ...
3
votes
3answers
381 views

Is it possible to create statefull web service in C#?

I have now something like this: public class Service1 : System.Web.Services.WebService { [WebMethod] public string Method1() { SomeObj so = SomeClass.GetSomeObj(); //this executes ...
3
votes
1answer
203 views

jQuery version of Dojo's Stateful?

Does anyone know of any plugins written in jQuery that are similar to Dojo's Stateful? See: http://www.dojotoolkit.org/api/dojo/Stateful.html Regards, Scott D Brooks
3
votes
2answers
1k views

Why shouldn't I use a JSF SessionScoped bean for logic?

I'm developing a java EE web app using JSF with a shopping cart style process, so I want to collect user input over a number of pages and then do something with it. I was thinking to use an EJB 3 ...
3
votes
3answers
2k views

Java: Tracking a user login session - Session EJBs vs HTTPSession

If I want to keep track of a conversational state with each client using my web application, which is the better alternative - a Session Bean or a HTTP Session - to use? Using HTTP Session: ...
3
votes
3answers
4k views

Stateful vs. Stateless Webservices

Imagine a more complex CRUD application which has a three-tier-architecture and communicates over webservices. The client starts a conversation to the server and doing some wizard like stuff. To ...
3
votes
5answers
2k views

Correct usage of Stateful Beans with Servlets

We currently have a Stateful bean that is injected into a Servlet. The problem is that sometimes we get a Caused by: javax.ejb.ConcurrentAccessException: SessionBean is executing another request. ...
3
votes
0answers
1k views

JAX-WS: stateful WS fails in a standalone process

I have a stateful web service deployed onto Tomcat. It consists of factory service and main API service, and works just fine. Factory service returns a W3CEndpointReference to main API instance, and ...
2
votes
3answers
3k views

How does one set up a WCF ServiceHost within a Windows Service that can access stateful information within the Windows Service

I have a written a Windows Service in C#. It is functioning and performing well. I have added a WCF service to the Windows service to enable client applications to connect to the Windows service and ...
1
vote
0answers
71 views

Play counter example to Lift for statefulness

In Chris Hagan's answer regarding Lift vs Play he states that Lift's statefulness does actually make it easier to code, giving this example for Lift: private def inviteUser(group:Group) = { a(() ...
1
vote
0answers
25 views

Store conversation state in managed beans or SFSB?

I'm a Java EE beginner and now working on a web app, using JSF,EJB and JPA as the three tiers. The website consists of several apps like twitter and ebay. Their accounts are all binded to the main ...
1
vote
0answers
65 views

How to create a EJB “session scoped” singleton bean?

What is best practices to implement a "session scoped singleton"? I need a "session-scoped singleton bean" that I can "inject/insert" into other @Stateful beans. I learned that simply injecting a ...
1
vote
1answer
128 views

Injecting @Stateful bean into another @Stateful bean

On a glassfish 3.1 server, I have a @Stateful session bean which is injected into another stateful session bean. The stateful session bean which is injected presents my entity access layer, it itself ...
1
vote
0answers
59 views

Can't convert from @stateless to @stateful beans

I'm having a problem instantiating a stateful session bean on glassfish3.1. A @ManagedBean (session scoped) of a JSF application used to use a @Local interface of a @Stateless session bean and ...
1
vote
2answers
239 views

EJB3 stateful concurrent calls from different clients

I have a rich client swing application calling a remote stateful ejb. I'm using JBoss 6.0. I have deployed the client in two different machines, i.e, different ip address, jvms, etc. The stateful ...
1
vote
1answer
1k views

Extjs 4 FiltersFeature vs stateful grid

I have a grid with some columns with filters. columns defination: columns:[{ text: "Number", dataIndex: 'clientreference', width: 200, ...
1
vote
2answers
143 views

Is this stateful web service/wcf service?

Service layer has a login method which accepts username and password and returns a unique session id (a guid) if the account is valid. On subsequent request the same session id will be passed instead ...
1
vote
1answer
85 views

web service statefulness

I have two wcf services with the same interface hosted in IIS using http binding. Both have only three methods: OpenFile(userid) which creates or opens userid.txt. Write(userid, X) which writes X ...
1
vote
2answers
222 views

Stateful Rails app. Storing data not in database

I have a Rails application, that includes chat. Everything works fine, but now I want to store the last 50 chat messages somewhere. I need it to show the last messages if a page is reloaded. I don't ...
1
vote
2answers
124 views

Java EE — using the same stateful object for several users

Even though I've been in Java SE for quite some time now, I started EE & web w/ Java only about a month ago, so pardon if the question seems a bit noobish... So here's the situation: I'm trying ...
1
vote
1answer
148 views

Is Terracotta used professionally?

Today at work I had a discussion with my co-workers and my boss about stateless/stateful beans (we just finished a project using JSF, it was the first time anyone at this company did something JSF ...
1
vote
3answers
181 views

Fantasy Draft Tool [closed]

I'm attempting to mitigate some of the fantasy football draft issues I've had the last few years by creating my own drafting tool. The major requirement, similar to the major draft tools out there ...
1
vote
1answer
752 views

Strange problem with SEAM stateful session bean

I've got a stateful session bean. @Scope(ScopeType.SESSION) @Name("chuckNorrisBean") public class ChuckNorrisBean implements Serializable, ChuckNorris with some function public void ...
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
3answers
314 views

Stateful eventing in C#

Are there any stateful eventing mechanisms in .net(c#) or any libraries that will help me maintain a state for the events fired By stateful I mean an event when fired is serialized to a persistent ...
1
vote
1answer
253 views

Combining Stateless & Stateful Connection

My application have a Stateless EJB. And Now I need to do some db operation via Stateful. Can this Stateless EJB can access the DB Utility which will open connection stateful? Will this lead to any ...
1
vote
3answers
1k views

Stateful Webservice

Possible Duplicate stateful webservices I have a need for a stateful webservice in our organization. However, everywhere I read online says that building a stateful webservice is bad ...
1
vote
2answers
1k views

Ejb 3, message driven bean cooperating with a stateful session bean?

Hey! I'm relative new to both Java EE and Stackowerflow, please be kind :-) I have a bunch of devices triggering Java messages to be sent on any state change. These devices are typically active for ...
1
vote
2answers
3k views

Stateful PHP Web Service Using SOAP

I'm trying to implement a stateful web service in PHP using the SOAP extension. (Yes I know that web services are supposed to be stateless; all I really care to persist is some form of a session ID so ...
1
vote
3answers
1k views

Is it possible to test stateful web services with SoapUI?

What do you use as a test client for your stateful web services? Is it possible to use SoapUI? Are there best practices in this area?
0
votes
2answers
27 views

EJBs - Architectural issue

I'm currently writing a new EJB application which basically is supposed to receive messages from a web service and launch a downloading process based on this message content. This application will run ...
0
votes
1answer
17 views

Android not restoring widgets correctly upon restoring focus

I'm developing a rather GUI heavy android app and it has lots of little widgets (text fields, buttons etc..) which are dynamically configured at runtime. Everything is working well enough when the ...
0
votes
1answer
62 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 ...
0
votes
2answers
44 views

should highscalability high-realtime (max tens of milliseconds allowed for response) business logic stateless or stateful?

I know it sounds very general question, but i'm really interested in having stateless services i want to know if it can or cannot be done with these limitations (stateless). for example google has ...
0
votes
0answers
21 views

Rules about EJBs deployment on WebLogic

I have question about this points: EJBs, Eclipse, WebLogic. I looked at a lot of topics but I can't find reliable pieces of information about all that stuff. I have to write me first stateless and my ...
0
votes
1answer
21 views

EJB call a method between two beans

I have got two Beans. One Stateful and one Stateless. Now I want to call a method, which is in the stateless bean, from the stateful bean. How can I do this? The stateless bean has also got an ...
0
votes
1answer
184 views

Use EJB 3.1 Singleton Bean as Client to Multiple Remote Stateful Session Beans

I'm very new to EJB 3.1 and am trying to solve a server side problem; perhaps someone could offer some guidance. I have a state machine that represents the shared state of multiple users in my ...
0
votes
0answers
135 views

How to call a STATEFUL SOAP webservice with Android

I managed to connect a soap web service with jax-ws and ksoap2-android. However, I cannot run a stateful WebService. The error comes at: SoapPrimitive resultsRequestSOAP = (SoapPrimitive) ...
0
votes
1answer
371 views

extjs stateful grid remove sort

I have a problem with statefull grid. I do not want to save the sort state but I do want to save all other options (column position, column width, grouping etc.) For now I have tried this with ...
0
votes
1answer
96 views

IOC Containers and Web applications

I have started to work on this .net web application where it has an IOC container (windsor) to create business managers, and to keep them in the memory untill the iis recycles them. Basically these ...
0
votes
1answer
160 views

Flex3 'transportsession' Webservice Session Management with Axis2?

I am building a prototype hybrid app with a Flex3 RIA client and backend Axis2 in Java on Tomcat 6. As this is a prototype, and given that I keep options open for factoring in other client types, I'm ...
0
votes
1answer
132 views

Class cast exception on stateful ejb

For some strange reason I am getting the following exception. 2011-02-08 09:53:30,667 ERROR [STDERR] (QuartzScheduler_Worker-9) java.lang.ClassCastException: ...

1 2