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
0
votes
1 answer

error LSF: undefined symbol: _ZN3ajn15_RemoteEndpoint17 [alljoyn]

I have a trouble with LSF alljoyn 15.04, I build LSF in ubuntu 16.04 success but I cannot run any app. I'm receiving Notification whenever I run the ./lighting_controller_client_sample in…
0
votes
1 answer

What is the purpose to use “AJ_SetIdleTimeouts(&bus, 10, 4);”?

AllJoyn Version: Thin core 16.04 aj\allseen\core\ajtcl\test\doorsvc.cc I try to study the security flow for doorsvc example code. … AJ_SetIdleTimeouts(&bus, 10, 4); What is the purpose to use “AJ_SetIdleTimeouts(&bus, 10, 4);”? And any detail…
Frank Lin
  • 1
  • 1
0
votes
1 answer

Calling an AllJoyn property from Java causes a AnnotationBusException

I'm struggling with using properties in AllJoyn. I'm new to AllJoyn but not to programming. I have a provider written C++ and I add my properties using status = m_Description->AddProperty("ServerName", "s", 1) After that call status equals…
Ed Wolfe
  • 3
  • 4
0
votes
2 answers

Chat via WIFI platform independent

I'm thinking of creating a chat app which is similar like firechat. which needs no internet for communication and depends only on BT or WIFI to communicate and also have an advantage of platform independent. I've seen many sites referring…
VinoPravin
  • 947
  • 3
  • 17
  • 32
0
votes
1 answer

Alljoyn onboarding linux Ubuntu x86_64

I'm new to the alljoyn, and I'm trying to run the onboarding services from my ubuntu x86_64. Is it possible to having an onboarder and an onboardee both in linux x86_64 ? In the documentation I can't see a clear step by step example where we can…
0
votes
1 answer

what is format to specify connectSpec for alljoyn_busattachment_connect on windows machine

Alljoyn SDK documentation for alljoyn_busattachment_connect @ https://allseenalliance.org/docs/api/c/_bus_attachment_8h.html#aeb22a38b231141d0d59b7b907379661f says we can provide connectSpec to this method. Can you please let me know some real…
Shashi Bhushan
  • 1,292
  • 11
  • 15
0
votes
1 answer

How to compile alljoyn sdk alljoyn-16.04a-src for ios?

I want to compile sample template file alljoyn sdk alljoyn-16.04a-src for ios but getting file missing error (alljoyn/Status.h file not found.) There is no sample file like AllJoynChat xcodeproj to compile for ios sdk alljoyn 16 version. I am not…
0
votes
1 answer

Which is better for alljoyn application, Alljoyn Observer listener or About Listener + Session Listener

Which is better for alljoyn application, Alljoyn Observer listener or About Listener + Session Listener? I am new to alljoyn, I see Observer takes care of session management and reduces the application overhead? Is that correct, which is better…
gilly
  • 23
  • 5
0
votes
1 answer

AllJoyn: Get well-known name from announced About message?

Is it possible in AllJoyn to get the well-known name of a remote device from its announced About message? I would like to use the well-known name to connect to the device later on without a new discovery process. I know I can get the device ID from…
Dominic
  • 4,572
  • 3
  • 25
  • 36
0
votes
1 answer

Is any specific code required to use Wifi Direct in AllJoyn on Android?

I've tried running AllJoyn's sample chat app on Android, with two phones connected over Wifi-Direct, but the two chat apps don't see each other. Is any special code required to make use of Wifi-Direct in AllJoyn? A secondary question is whether…
piccy
  • 336
  • 2
  • 12
0
votes
1 answer

AllJoyn mailing list

What happened to Alljoyn mailing lists? there was a wealth of information there, is there another way to access it? AllJoyn Mailing list the above is not accessible anymore. Can we still continue to develop using AllJoyn.
0
votes
1 answer

AllJoyn Thin Client - Building the services samples on Linux

I have tried to build the service samples AllJoyn Thin Client on Linux but I'm getting an error. Does anyone know how to resolve this problem? The problem is probably in one file called Debug.h, which is missing. The prompt returns this message:…
0
votes
2 answers

Building the services samples AllJoyn Thin Client on Linux

I have tried to build the service samples AllJoyn Thin Client on Linux but I'm getting an error. Does anyone know how to resolve this problem ? I have searched some solutions but I couldn't find any answer that fit into my problem. The prompt…
0
votes
1 answer

Does anyone have the AllJoyn On to make it available to me?

I'm need AllJoyn On apk for some applications. Does anybody have one to make it available to me ?
0
votes
2 answers

AllJoyn Compilation leads to UnsatisfiedLinkError

There's a problem whenever I build my project to my phone (Android 4.4.2). I get the UnsatisfiedLinkError and it seems that the alljoyn library is not yet loaded. The only thing that I've added is static { System.loadLibrary("alljoyn_java");…