The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
16 views

javax.xml.ws.WebServiceException: No address is available

I have a stateful WebService and a stateless one, which returns a EndPointReference to a new Instance of the stateful webservice. Like the example in this blog ...
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
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, ...
0
votes
1answer
46 views

Dojo stateful transform for checkboxes

So for a dijit/form/CheckBox, value is either a string for true, or false. This causes a problem for things in my data source which are Y/N values. I've tried do a checkbox subclass to override ...
0
votes
1answer
73 views

InitialContext.lookup(ejbMappedName) return a new instance or an old same instance

For a statful EJB, if I get its reference using InitialContext.lookup(itsMappedName), for each call of (InitialContext.lookup(itsMappedName)) it will return a new Stateful EJB or the same stateful ...
0
votes
0answers
29 views

Implementing a Custom Queue as a Web Service [closed]

I am implementing a Custom FIFO Queue (with features like the notion of timeouts). I have to implement this as a web service - with a single server and multiple clients able to read/enqueue/dequeue ...
2
votes
1answer
126 views

Is RenderStrategy.ONE_PASS_RENDER a reasonable way to get rid of page version parameters like ?1 in a Wicket application?

We've been using Wicket 1.3.7 for a few years now and are currently in the process of upgrading our project to wicket 6.x I did a lot of research regarding to the page version parameters (e.g. ?1) ...
0
votes
0answers
76 views

Weblogic 12c Error: Extended Persistence Contexts can only be invoked from within the context of the stateful session bean

I got a task to migrate from Jboss 4.2 to Weblogic 12c. The program is running normally in Jboss 4.2. I'm trying to deal with Extended Persistence Contexts in Stateful EJB as the following code: ...
1
vote
2answers
132 views

Stateful EJB does not keep property value

I am using a stateful EJB for keeping my login information: @Stateful public class SecurityService { private static final Logger log4jLogger = Logger.getLogger(SecurityService.class); ...
0
votes
2answers
36 views

HTTP and Sessions

I just went through the specification of http 1.1 at http://www.w3.org/Protocols/rfc2616/rfc2616.html and came across a section about connections ...
0
votes
2answers
287 views

EJB 3.1 Stateful Bean behaves like a Singleton Bean

I'm trying to program an EJB 3.1 using Stateful Session bean. I should have understood quite well what an EJB is and the difference between stateful, stateless and singleton. But my stateful bean has ...
1
vote
2answers
290 views

Silverlight Dispose pattern with WCF (Async)

I'm a little new to Silverlight, and I want to know how to deal with the Faulted/Disposing of a WCF service. I'm used to something like this (wcf abort/close pattern) where you call the service in a ...
2
votes
3answers
222 views

Maintain a variable value between program runs

I have a simple c# console application that is scheduled after every 5 mins. Every invocation of the program requires the output of the last run. What I am doing right now is using a text file and ...
1
vote
1answer
153 views

WCF stateful service

Or - at least I think the correct term is stateful. I got a wcf service, listing lots of data back to me. So much data in fact, that I'm exceeding maxrecievedmessagesize - and the program crashes. ...
0
votes
0answers
94 views

Better approach to expose statefull service as REST service

Not sure if this content belongs on [SO] This is basically about discussing approach, there is not as such code involved The problem: we have some existing statefull services that we want to expose ...
0
votes
1answer
444 views

Produce an Entitymanager with extended persistence context via CDI

We are trying to build a system, which "produces" an entitymanager depending on the logged-in user (kind of multitenancy). Therefor we implemented a stateless ejb like this: @Stateless ...
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
0answers
150 views

Stateful Session Bean lost state with Glassfish and Vaadin

I try to develop a chat application, in this chat application, I have a login Component: package org.zambaux.chat.view.window; import javax.ejb.EJB; import ...
0
votes
1answer
140 views

How does WS-addressing create “Stateful” Endpoints (JBossWS)

So reading JBoss administration guide I see that WS-addressing is used to create "stateful endpoints." I understand that WS-addressing creates a standard for specifying the messaging routing data ...
1
vote
1answer
195 views

Debug Java application with Flash Builder 4.6

I have a Flex application with Java server. I have some stateless and stateful Java beans. I want to debug Flex side with Flash Builder 4.6. Every debugging launch, my Java JSESSIONID is regenerated ...
0
votes
1answer
1k views

grid column header filter plugin

I am using a plugin in extjs grid to filter data. This is working great but what i miss is that the selection i made are stored. So when i refresh the browser the settings are lost. How can i store ...
4
votes
3answers
455 views

Can I assume allocators don't hold their memory pool directly (and can therefore be copied)?

I'm writing a container and would like to permit the user to use custom allocators, but I can't tell if I should pass allocators around by reference or by value. Is it guaranteed (or at least, a ...
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
163 views

Stateful JSON Parser for Ruby

I have a ruby server that reads from a flat file every 1 second or so and this flat file is constantly being updated with new data every 1 second or so by another server. This flat file is essentially ...
0
votes
1answer
1k views

Apache vs Weblogic session times

I'm working on a web-application which stores some info on the session, this has to stay active for at least 2 hours. ( a bit like a shopping-cart). I'm working with Apache in front of multiple ...
0
votes
1answer
363 views

How to develop stateful servers in Java EE without Jax-ws

I'm developing a web service in Java EE using Apache Tomcat and so far I have written some basic server side methods and a test client. I can successfully invoke methods and get results but every time ...
0
votes
2answers
90 views

why nullify instance variables when destroying a stateful EJB?

In an example of the @remove annotation on a stateful EJB, the annotated method nullifys the bean's instance variables. Why? Surely destroying the bean destroys its contents, i.e. any variables? ...
0
votes
1answer
325 views

Issue with stateful EJB - keeps one session for all users

I am quite new to EJB. I need stateful bean in my EAR application. I have created simple stateful session bean in an ejb module: @Stateful public class Test { public Test() { } private ...
0
votes
2answers
137 views

Difference between stateful xxxServerHandle and unstateful yyyServerhandle?

I reviewed Netty docs, and found some comments in examples source Class: org.jboss.netty.example.factorial.FactorialServerHandler , in this src, some comments: //##in ...
3
votes
3answers
456 views

Horizontal scaling of JSF 2.0 application

Given that JavaServer Faces is inherently stateful on the server side, what methods are recommended for horizontally scaling a JSF 2.0 application? If an application runs multiple JSF servers, I can ...
2
votes
1answer
668 views

Dojo Stateful watch method firing before value is actually set

Using Dojo 1.6.1. Update: Here a jsfiddle http://jsfiddle.net/E4EaM/1/ A form is created with some fields. this.projectServiceidField = new dijit.form.TextBox({ label: 'idField' , name: ...
1
vote
2answers
647 views

EJB Accessing Stateful Session Bean NameNotFoundException

I'm using a stateful session bean to create a shopping basket. I'm having trouble accessing my bean and am getting the following error ERROR BasketBean#ejb.remote.BasketBeanRemote -- service ...
0
votes
0answers
373 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(() ...
0
votes
2answers
106 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
133 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 ...
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 ...
0
votes
2answers
115 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 ...
1
vote
0answers
113 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 ...
-3
votes
1answer
557 views

Shall i use JSF 2 (PrimeFaces) in big load and high traffic web site? [closed]

I am developing admin part of our web application with JSF 2 (PrimeFaces). I have made a research that JSF is not suitable for big load and high traffic sites, because it is server stateful. Shall i ...
1
vote
0answers
295 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
850 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
161 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 ...
0
votes
1answer
47 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 ...
6
votes
3answers
475 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 ...
0
votes
1answer
588 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 ...
1
vote
1answer
2k 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 ...
1
vote
2answers
1k 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
3k 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
329 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 ...
0
votes
1answer
180 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 ...

1 2