Questions tagged [data-sharing]
249 questions
0
votes
1 answer
sharing data between c++/c and Java
I am working with a c process that reads an ambient sensor via stream, each second it reads 1000 samples about light,Temperature and sound of the surrounding ambient, now I would like to read this data by means of a java program I know there are…

angelius
- 493
- 2
- 5
- 9
0
votes
1 answer
How do I pass the data from one thread to three other threads?
I have to write an application which consists of four threads:
thread generates some data (producer thread);
thread gets the data from producer thread and does Action1(data);
thread gets the data from producer thread and does Action2(data);
thread…

Igor Sotnyk
- 3
- 1
0
votes
0 answers
ioS: How to share data between two devices which are far way?
In one of my application I need to share 4 (Datatype:double) values to another device. As per my requirements I don't use BackEnd server. Can anyone suggest me a best way to achieve this? Here we have one more glitch is the distance between the…

Sekhar Bhetalam
- 4,501
- 6
- 33
- 52
0
votes
1 answer
Sharing data between two subdomains on different applications in ASP.Net
We need to share data between subdomains in web sites using different applications developed using ASP.Net and deployed on IIS. We have following ideas in mind :-
a. Sharing data using cookies : But this idea will allow only to share us simple…
0
votes
1 answer
java sharing data in different apps with minimum hits to database
I'm having some functionality where i need to use data from database with minimum hits to database.
This data is not changed frequently so I'm using static ConcurrentHashMap to load data in them at time of loading app,
and when new data is…

user3588548
- 45
- 1
- 6
0
votes
2 answers
ASP.NET - using another app's app_data?
If there is a self contained web app, let's use the Screw Turn Wiki as an example, that utilizes the App_Data to store the MDF, is there any way another web app, living in the same domain, can also use that MDF?
Example IIS…

Keith Barrows
- 24,802
- 26
- 88
- 134
0
votes
1 answer
Sharing Settings from Console Apps
I have 2 Console Applications in C#: App1 and App2 with Setting Properties access set to public and I follow some instructions:
1.- I set Property setting App2 'Name' from App1
App2.Properties.Settings.Default.Name = "John"
2.- I run App1 and it…

Daniel Camacho
- 423
- 5
- 12
- 27
0
votes
0 answers
sharing data b/w mobile devices in flex
I wanted to know what options are there for sharing data b/w mobile devices in Flex.
I want to share data stored in one device in Sqlite database.
Can I share data using Bluetooth or some other device to device transfer technology ? How will this…

corefragments
- 23
- 9
0
votes
0 answers
How to send data from child directive to parent without shared services/factories?
I have two directives. One is an element and another one is an attribute.
How do I send data from attribute controller to the element controller. Note that a have a few instances of item, thus I can't use shared service because I…

Roman Dryndik
- 1,167
- 1
- 13
- 34
0
votes
1 answer
Sharing Data between android app users
I have a bit of a theoretical question for which there is no code yet as I am still just in the thinking stage. I want to update an app to allow users to share their data with others through DropBox Datastore or something like that. However, when a…

collusionbdbh
- 701
- 1
- 6
- 18
0
votes
1 answer
Firefox extension - Share common state between two or more windows
I am developing firefox extension.
Problem is that when i open second window (Ctrl + N) my extension has new state for new opened window.
If I reacts or changes on second window it never affect on first window or vice versa.
Ex
Installed extension…

Ankur Loriya
- 3,276
- 8
- 31
- 58
0
votes
0 answers
Python sharing instance between two threads in two classes
I have some code that needs to be in a separate thread and this code is a different class completely. I am using the multiprocess.Queue queue to share the data. Basically I want the parent base class (also the program driver) to make an instance of…

user2573815
- 11
- 3
0
votes
0 answers
Best way to share data between Server/Client on same host?
I'm making a multi-threaded UDP client/server application in Java and have run into a little snag. I have a 'solution' in mind, but I'm 90% sure that it is a patchy fix to this issue.
Let's call host 1's threads Client 1 and Server 1 (C1 & S1), and…

filpa
- 3,651
- 8
- 52
- 91
0
votes
1 answer
How to implement sharing a custom data type
I need to implement data sharing feature for my app. The data type that I need to share is very specific and is not available on schema.org. This is an enterprise app and we have no need to share this data with any outside apps. I couldn't find any…

crazy novice
- 1,757
- 3
- 14
- 36
0
votes
0 answers
Flex mobile App - how to share data between apps
how do you share data between apps with a Flex mobile app?
For example, on Shazam, you can share the tag info - you click the 'share' button, and it lists a number of apps to share the tag with, for example: 'add to dropbox', 'copy to clipboard',…

stevemcl
- 367
- 1
- 3
- 11