GithubHelp home page GithubHelp logo

Comments (3)

sangelovic avatar sangelovic commented on August 20, 2024

In the client code example in the tutorial, there was a comment at the proxy creation and the paragraph below it explaining shortly that stuff. But I understood now it might not have been clear enough, so I rephrased the comment to

    // Create proxy object for the concatenator object on the server side. Since here
    // we are creating the proxy instance without passing connection to it, the proxy
    // will create its own connection automatically, and it will be system bus connection.

and the paragraph underneath:

The object proxy can be created by either explicitly passing the connection object to it, or without the connection object. In the former case, we have the freedom of creating our own connection (to either system bus or to session bus) and then we can just move that connection object as the first argument of the proxy factory. The latter option is more convenient (no messing with connection for proxy), the proxy will create and manage its own connection, but the limitation is that it will be the connection to the system bus only.

Is that okay for you?

from sdbus-cpp.

CarloWood avatar CarloWood commented on August 20, 2024

Happy to have found this, because that info seems to (still) be missing from the tutorial.
I failed to connect as stated above after setting up the server on the session bus with:

const char* serviceName = "org.sdbuscpp.concatenator";
auto connection         = sdbus::createSessionBusConnection(serviceName);

After reading the above I tried the following on the client:

const char* serviceName = "org.sdbuscpp.concatenator";
auto connection         = sdbus::createSessionBusConnection(serviceName);
const char* destinationName = "org.sdbuscpp.concatenator";
const char* objectPath      = "/org/sdbuscpp/concatenator";
auto concatenatorProxy      = sdbus::createProxy(std::move(connection), destinationName, objectPath);

which fails (at the second line) with:

terminate called after throwing an instance of 'sdbus::Error'
  what():  [org.freedesktop.DBus.Error.FileExists] Failed to request bus name (File exists)

How am I supposed to do this?
Thanks in advance.

from sdbus-cpp.

CarloWood avatar CarloWood commented on August 20, 2024

Ok, I figured it out...

auto connection = sdbus::createSessionBusConnection();

not passing a name thus. Where can I find this in the documentation?

from sdbus-cpp.

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.