Giter Club home page Giter Club logo

Comments (12)

schroeder- avatar schroeder- commented on June 29, 2024

some server doesn't allow setting the timestamp. you need to set it via DataValue.

datavalue = ua.DataValue(ua.Variant(True, ua.VariantType.Boolean))
node.set_value(datavalue)

from python-opcua.

Zouzou1988 avatar Zouzou1988 commented on June 29, 2024

Same issue with your code:

            node = client.get_node("ns=3; i=16847616")
            data_value = ua.DataValue(ua.Variant(True, ua.VariantType.Boolean))
            node.set_value(data_value)

Error: "The server does not support writing the combination of value, status and timestamps provided."(BadWriteNotSupported)

from python-opcua.

schroeder- avatar schroeder- commented on June 29, 2024

Try this:

node.set_attribute(ua.AttributeIds.Value, ua.DataValue(True))

from python-opcua.

Zouzou1988 avatar Zouzou1988 commented on June 29, 2024

same error. sorry

from python-opcua.

schroeder- avatar schroeder- commented on June 29, 2024

Are you sure you can write that value? Dod you try it via ua expert?

from python-opcua.

Zouzou1988 avatar Zouzou1988 commented on June 29, 2024

it works using uaexpert.

from python-opcua.

Zouzou1988 avatar Zouzou1988 commented on June 29, 2024

Capture

from python-opcua.

AndreasHeine avatar AndreasHeine commented on June 29, 2024

why is there a blank after ; in the nodeid?

from python-opcua.

Zouzou1988 avatar Zouzou1988 commented on June 29, 2024

why is there a blank after ; in the nodeid?

Do you mean « , »in the description of nodeid on UA expert ? I don’t know

from python-opcua.

oroulet avatar oroulet commented on June 29, 2024
datavalue = ua.DataValue(ua.Variant(True, ua.VariantType.Boolean))
datavalue.SouceTimestamp = None
datavalaue.ServerTimestamp = None
node.set_value(datavalue)
``

from python-opcua.

Zouzou1988 avatar Zouzou1988 commented on June 29, 2024
datavalue = ua.DataValue(ua.Variant(True, ua.VariantType.Boolean))
datavalue.SouceTimestamp = None
datavalaue.ServerTimestamp = None
node.set_value(datavalue)
``

*** Failure: "The server does not support writing the combination of value, status and timestamps provided."(BadWriteNotSupported)

from python-opcua.

oroulet avatar oroulet commented on June 29, 2024

Try to remove status or add one of the timestamp. That is what the server says is the issue but does not tell us what it wants

from python-opcua.

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.