Questions tagged [alljoyn]

AllJoyn™ is an open-source application development framework that enables ad hoc, proximity-based device-to-device communication that is OS agnostic.

AllJoyn is an open source peer-to-peer (P2P) software development framework that enables ad-hoc, proximity-based, device-to-device communication without the use of an intermediary server. It allows developers to easily write proximity-based P2P applications with a common set of APIs across hardware platforms and OS environments. AllJoyn manages the difficult connectivity, networking and security requirements of P2P communications and allows developers to focus on delivering new and exciting user experiences.

Currently Alljoyn framework is officially supported on local IP network (ethernet / Wi-Fi, etc.) and there are unsupported implementations for WiFi-Direct and bluetooth (Bluez stack with root permission needed).

184 questions
1
vote
1 answer

How to get AllJoyn byte[] property

I have an AllJoyn property like this I a Windows 10 UWP app when I try to read it - I get success - but I don't know how to get out the value from the result Code looks like this: var…
ManniAT
  • 1,989
  • 2
  • 19
  • 25
1
vote
0 answers

alljoyn Application build error #error No OS GROUP DEFINED

I am trying to build one alljoyn application for openwrt. I am getting the following error usr/include/qcc/platform.h:32:2 error: #error No OS GROUP defined. I am using Makefile to build my application. I have two makefiles. My top level…
dkm
  • 15
  • 5
1
vote
1 answer

Alljoyn sample app resources

After going through several documents on the Allseen website, I found outdated git hub links. There were download links to download sdks for android and linux. But is there a download available for the onboarding app for Android?
teemo91
  • 25
  • 6
1
vote
0 answers

Alljoyn - 15.09a build - linking issue on pi

15.09 does build fine on my normal linux system (ubuntu 64bit 14.04). When trying to build Alljoyn 15.09a on my raspberry pi b+ using scons CPU=arm OE_BASE=/usr CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf- BINDINGS=cpp BT=off ICE=off WS=off the…
gPelz
  • 33
  • 3
1
vote
0 answers

Alljoyn Control-Panels Not Rendering in Dashboard 14.12

I have Alljoyn Dashboard 14.12 on my Samsung Galaxy Note that I simply downloaded from the play store. I've noticed that, while the dashboard is able to find and onboard Alljoyn devices, it does not render their control-panels. I've found this to be…
Darko
  • 589
  • 1
  • 7
  • 18
1
vote
2 answers

Leave a self-joined session

I understood by reading the source code that the method leaveSession of the BusAttachment can't be called on a self-joined session. So, how to leave a self-joined session?
Lino
  • 5,084
  • 3
  • 21
  • 39
1
vote
1 answer

AllJoyn sample app Build failed on Xcode

I want to test AllJoyn chat app but following official step-by-step documentation https://allseenalliance.org/framework/documentation/develop/run-sample-apps/chat/ios-osx where first step is "Build a sample" and instructions are…
1
vote
2 answers

Client Linux: how to start the daemon from code?

I'm developing an linux client using alljoyn 15.04 (java)but i think is necessary start the alljoyn daemon before the client. is it right? how can i do it?
1
vote
1 answer

Create interface from XML

Using the Introspection interface I obtain a String that represents an AllJoyn object in XML Introspection language. In the AllJoyn C++ API there is a function called CreateInterfacesFromXml. How to create an interface from this XML string in…
cstdvd
  • 41
  • 4
1
vote
3 answers

Is there an AllJoyn SDK for c# / .NET?

Is there an AllJoyn SDK for C# / .NET ? - I want to create an AllJoyn Service in a console application, which have to run on my Windows Server and I only could find the AllJoyn SDK for Windows Universal Apps.
lkathke
  • 59
  • 7
1
vote
1 answer

AllJoyn Explorer does not show interfaces programmed in AllJoyn 14.12

I am playing with AllJoyn and Windows 10. I installed Windows 10 and tried the samples provided like MockAdapter and so on. These devices AllJoyn explorer displays, but if I install AllJoyn 14.12 on other linux computer and run basic_service, then…
1
vote
2 answers

How to program AllJoyn Explorer

I am trying to develop a UWP application using C# that will discover all AllJoyn producers on the network and create consumer objects for communicating with the devices(producers). It's going to be pretty much a generic consumer like the AllJoyn…
1
vote
2 answers

alljoyn framework ios error: cannot parse the debug map for

Hi I am trying to run Alljoyn ios chat sample with Xcode 7 and IOS-9 but facing following errors : ld: warning: directory not found for option '-L/build/Debug-iphoneos' ld: library not found for -lssl clang: error: linker command failed with…
Krishna Verma
  • 814
  • 2
  • 8
  • 23
1
vote
1 answer

How to cross compile alljoyn standard core and service framework?

I have one wifi camera with armv5 processor and want to cross compile and alljoyn standard core, service framework and want to make notification producer application. But I am stuck while cross compiling alljoyn. I am compiling alljoyn with…
Pratik
  • 131
  • 1
  • 4
1
vote
0 answers

ALLJOYN server crashing iOS

IN GIST Meanwhile, I will try to add more information if it helps. We are actually hosting a server built in .NET and we have 2 clients. One is Android and another is iOS. We are making service calls through chat messages and the problems occurs…