soap « Session « Java Enterprise Q&A





1. Detecting session loss?    stackoverflow.com

Is there a call I can make to determine whether my session is still alive in a gsoap client? The only way I see to check if a session is still alive ...

2. SOAP and NHibernate Session in C#    stackoverflow.com

In a set of SOAP web services the user is authenticated with custom SOAP header (username/password). Each time the user call a WS the following Auth method is called to authenticate ...

3. JAXWS and sessions    stackoverflow.com

I'm fairly new to writing web services. I'm working on a SOAP service using JAXWS. I'd like to be able to have users log-in and in my service know ...

4. Can't login with session id in Flash builder for force.com application    stackoverflow.com

I have simple Flex for Force application and I want to embed it into VisualForce page. I've done everything as described in tutorials and tested it against DE, but I get ...

5. Jira soap session: how to reduce the connection time or resuse session?    stackoverflow.com

I got the sample Jira soap client program from Atlassian's web site. It always takes a long time to connect to the server. Code is here token = getJiraSoapService().login(userName, password); ... public JiraSoapService getJiraSoapService() { ...

6. SOAP sessions with javax.xml.soap?    stackoverflow.com

I'm working with a SOAP application in Java. A new API was added to the server that wants login credentials and returns a guid which is used in queries to ...

7. Capture every SOAP Message in a session?    stackoverflow.com

I am trying to analyze a browser-based Flash application that communicates to a backend with SOAP. What I'd like to do is capture each of the SOAP calls that are made ...

8. Set Operation to be only Soap not Rest, when have two endpoint    stackoverflow.com

It os a way to force Operation to be only SOAP. I have two endpoints in config - SOAP and REST and now every Operation is supported by both. My main problem ...

9. How can I manage users' sessions when I use web services?    stackoverflow.com

In case if user works with web application via web browser, the user's session is managed by application server. It takes care of sessions creation, validation, timeouts, disposings, etc. And as far ...





10. should same cleint, different soap request for the same service in the same session?    coderanch.com

Hi, I tried this way to make a session tracking in web service: in the service SEI, I let it implement the ServiceLifecycle in order to access the HttpSessionContext and do the resource session management there. in the client, I add the property setting for the stub to indicate the client will participate with the session management, stub._setProperty(Stub.SESSION_MAINTAIN_PROPERTY, Boolean.TRUE); when I ...