Questions tagged as 'session'

1
answer

How to maintain a Session after re-executing an application?

In my project in MVC 5, a session with user data is created at login and after re-execution of the Session application no longer exists, however, the Coockie authentication still exists. What can I do to keep both active or destroy both? [H...
asked by 24.10.2014 / 14:44
1
answer

Clustered JSF application

What does my application (JSF + Primefaces) need to have to work on a cluster? I'm doing a test in a clustered 3 Tomcat environment (with session replication) and my test application does not work. At first, I only included the <dist...
asked by 30.10.2014 / 18:12
1
answer

Keep sessions in subdomains with CakePHP

I am having problems keeping the sessions active among the subdomains of the system, I am using the CakePHP version 2.4.7, I already added the function below in App/bootstrap.php ini_set('session.cookie_domain', env('HTTP_BASE')); I...
asked by 28.04.2014 / 15:22
1
answer

Difficulties Session Hibernate

My web application uses Hibernate 4.3 and does Connection Pool control using C3P0. Difficulties happen on a recurring basis and unfortunately I can not seem to find the problem that causes such errors. Here's one of the errors: org.hiber...
asked by 30.04.2018 / 13:40
1
answer

Is it usual to deal with sessions in an Android application?

My question is this: I have a Rails server and I make queries on that server using an Android application. If I were creating a web system, I would use session to manage the permissions of my system. However, as I have the application, I make th...
asked by 28.11.2017 / 20:06
1
answer

Redirect after receiving response from the server?

I have an application that the front end is VueJS / Quasar and the server is hapiJS. I'm working on the login part and would like to know how to redirect the page after receiving confirmation from the server that the login information is correct...
asked by 25.08.2017 / 16:56
1
answer

Session in Laravel 5

In my controller, I log in as follows: if(!empty($input['user'])) { $result = $this->userRepository->searchuser($input['user']); //Busca o usuario pelo login // dd($result['data']['user']); if ($resul...
asked by 06.12.2017 / 16:17
1
answer

Session library for NodeJS / HapiJS?

I'm doing an email application and got to the part where I need to do the session and login part, but I've never done it before, I'm using HapiJS as a server and I'd like to know which session libraries are best, and what other resources that I...
asked by 24.08.2017 / 22:00
1
answer

PHP: passing session variables from one domain to another domain

We have two projects hosted in different domains. I need to pass some information from one domain to another, to generate a ticket. I was asked to send session variables to this other domain for ticket generation. After some research, I sa...
asked by 05.07.2017 / 15:05
2
answers

Controlling PHP sessions with Codeigniter

Good morning, I'm new to programming with PHP and I have a question: I've already developed the login system and it's working properly, now I'd like to control access to the other pages of the application, access internal pages if you are...
asked by 26.01.2017 / 14:50