GithubHelp home page GithubHelp logo

Comments (2)

DerMika avatar DerMika commented on May 24, 2024 1

Hi,

As long as you are using a stateful client (it seems like you do, since you have the stateful parameter set to true), the client will keep working in the same session as long as it is instantiated. Until you sign out of the current session of course.

So if you're getting a different Session ID between two messages, either the client is somehow running in stateless mode, or something caused you to sign out of your session, or a different instance of the client is used.

Also remember that once the PHP script has ended, all instances of the client will be destroyed. If you're in the situation where you need to persist session context between HTTP requests to your server, you will have to store your session information for example in the SESSION, or in some other kind of temporary storage, and when re-instantiating your client, you can continue working in the same session by providing the previous session's data to the client.

To achieve this, you can extract the current session's context by calling

$currentSessionData = $client->getSessionData();

The result will be an associative array containing Session ID, Sequence Number and Security Token. When you instantiate a new client and you need to continue a previous session, you can provide the previous session's data by calling

$client->setSessionData($previousSessionData);

Let me know if this solves your problem.

from amadeus-ws-client.

Jaymaady avatar Jaymaady commented on May 24, 2024

Hello DerMika ,

Problem Solved,

Thank you very much for your support.

from amadeus-ws-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.