Results 1 to 10 of 80

Hybrid View

  1. #1
    Power Member
    Join Date
    Feb 2008
    Location
    Siracusa
    Posts
    161
    Hi epep,

    you can always test your code against a Lightstreamer version available from our site (for example, you can install a free Moderato version or a Vivace demo). After installation, please follow the instructions on how to deploy the StockList Demo Adapter.

    That said, your modifications look very good, just a couple of observations:
    1. Replacing the "raise IOError()" in the _handle_stream method is not a good idea, because a server error response while connecting is a symptom that something is not working properly, as you can read from Paragraph 4.1 of the Network Protocol Tutorial
    2. It is necessary to remove the following line:

      before invoking reconnect(), otherwise you'll run against a runtime error: it is a bug that I'm going to fix in our example


    Please let us know about your progresses.

    Thanks and Regards,
    Gianluca

  2. #2
    Quote Originally Posted by gianluca.finocchiaro View Post
    Replacing the "raise IOError()" in the _handle_stream method is not a good idea, because a server error response while connecting is a symptom that something is not working properly, as you can read from Paragraph 4.1 of the Network Protocol Tutorial
    In fact the only error I encountered for now with IG's stream server happen here, about 3 times a day, while trying to bind. I receive a SYNC ERROR about half a second after a LOOP message, before the binding is done. In this situation the reconnection work at first try.

    I understand that errors in this point should be used with care for a clean client, but for my project I believe that the only errors that can occur here are the temporary ones, which would be resolved with a later reconnection.
    Quote Originally Posted by gianluca.finocchiaro View Post
    It is necessary to remove the following line: before invoking reconnect(), otherwise you'll run against a runtime error: it is a bug that I'm going to fix in our example
    Thanks a lot ! I see the point : None has no close() method.

    This line is also worthless before calling the bind() method ?

  3. #3
    Power Member
    Join Date
    Feb 2008
    Location
    Siracusa
    Posts
    161
    Hi epep,

    Quote Originally Posted by epep View Post
    ...
    This line is also worthless before calling the bind() method ?
    yes because the bind() method replaces self._stream_connection with a newly created object: see fixed example here.

    Let me know.

  4. #4
    Ok, it works fine without the "self._stream_connection = None".

    I notice that my logging was badly formated in reconnect(), I should have written :

    About errors documented in 4.1 of the network protocol tutorial, do you agree that they should not happen after the connection is established ? I've done this at the end of the _handle_stream method : Like this, if an error occurred at the first connection, it is raised. If it encounters the bind problem from IG, it reconnects. Is it clean ?
    Last edited by epep; November 4th, 2016 at 12:26 PM.

  5. #5
    Power Member
    Join Date
    Feb 2008
    Location
    Siracusa
    Posts
    161
    Hi epep,

    Quote Originally Posted by epep View Post
    ...

    About errors documented in 4.1 of the network protocol tutorial, do you agree that they should not happen after the connection is established ? I've done this at the end of the _handle_stream method : Like this, if an error occurred at the first connection, it is raised. If it encounters the bind problem from IG, it reconnects. Is it clean ?
    In case of binding an existing session (hence _bind_counter is greater then 0), you could run against similar issues, as specified in the Paragraph 4.2 of the Network Protocol tutorial.

    Obviously you are free to implement the reconnection logic as per your requirements, but in my opinion you should trigger it only if you can be sure that a real network problem has been verified.

    Let me know,
    Gianluca
    Last edited by gianluca.finocchiaro; November 13th, 2016 at 04:46 PM. Reason: Fix typo

 

 

Similar Threads

  1. Python Client Library for Lightstreamer
    By Alessandro in forum Client SDKs
    Replies: 1
    Last Post: December 18th, 2014, 05:15 PM
  2. how to comunicate lightstreamer server by python
    By keyan in forum Client SDKs
    Replies: 4
    Last Post: December 18th, 2014, 05:12 PM
  3. Replies: 2
    Last Post: January 5th, 2012, 08:53 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT +1. The time now is 08:05 AM.