Questions tagged [data-sharing]
249 questions
272
votes
9 answers
Sync data between Android App and webserver
I want to sync data (such as db record, media) between an Android App and a Server. If you've seen Evernote or similar Applications, you certainly understand what I mean.
I have some question (imagine we want to sync DB records):
Every user has a…

Omid Nazifi
- 5,235
- 8
- 30
- 56
38
votes
4 answers
Data Sharing between micro services
Current Architecture:
Problem:
We have a two-step flow between frontend and backend layers.
First step:
The frontend validates an input I1 from the user on microservice 1 (MS1)
Second step:
The frontend submits I1 and more information to the…

Leonel
- 2,796
- 5
- 25
- 36
35
votes
1 answer
Using special auto start servlet to initialize on startup and share application data
I need to get some configuration and connect to external resources/objects/systems somewhere and store it in application scope.
I can see two ways to setup my application:
Overriding the init() in the existing servlets and required code there and…

riz
- 385
- 1
- 3
- 8
34
votes
3 answers
Data Sharing between Fragments and Activity in Android
Ive asked a similar question before and didn't get an answer and seems many other ppl are searching for an answer. So I am posting this question to hopefully get a clear answer that everyone can benefit from.
I have an activity with 2 fragments in…

Syntax_Error
- 5,964
- 15
- 53
- 73
22
votes
1 answer
Sharing data in between apps in IOS
I have a task to share data between apps in the same device. May be both apps can use a shared database on same device. How to share Data between two apps in IOS. Anybody have done it in any way.
Please let me know. Thanks

Abhishek
- 337
- 3
- 11
21
votes
2 answers
Intermodule (library projects) communication in android application
In the below shown diagram, I am having 3 modules(as android library) which extends the base "common components module" and all this 3 modules will be added to a single android application. All 3 modules are independent modules but when it comes as…

Dinash
- 3,027
- 4
- 32
- 45
13
votes
2 answers
Sync large amounts of data between mobile app and webserver
The Setup
I have native iOS and Android apps which sync data to and from my webserver. A requirement of the apps is that they work offline so data is stored on the apps in sqlite databases.
The apps communicate with the server with a series of REST…

John Webb
- 381
- 3
- 14
10
votes
2 answers
In Docker, how can I share files between containers and then save them to an image?
I want to commit the data in a container's shared volume to an image. I cannot seem to do it? I kind of get the impression this perhaps is not possible in Docker but that seems totally at odds with the whole philosophy of not leaving data on the…

rickard
- 428
- 1
- 4
- 14
10
votes
2 answers
NoMonomorphismRestriction helps preserve sharing?
I was trying to answer another question about polymorphism vs sharing when I stumbled upon this strange behaviour.
In GHCi, when I explicitly define a polymorphic constant, it does not get any sharing, which is understandable:
> let fib :: Num a =>…

Rotsor
- 13,655
- 6
- 43
- 57
7
votes
1 answer
Sharing File Data Between Applications in Swift/iOS
I've been doing research on how to share data between applications securely. I'd like to get some info on the correct way to handle this before I do a deep dive on implementation using the wrong method. Just cause you can do something does not…

Unome
- 6,750
- 7
- 45
- 87
6
votes
1 answer
Wificonfiguration is deprecated Android 10
Wifi configuration is deprecated at 29 Android Version. I want to share the file using WIFI but there is no such library which i can use for this purpose. So If Anybody has a solution for this problem kindly share it.
WifiConfiguration wc = new…

Ahmad Idrees
- 181
- 3
- 12
6
votes
2 answers
Blazor Passing List between components
I am having issue with the code, I have my page layout as below.
I am communicating to database to get data for Main Content. It is List that I am getting from database. Now I want same List to be available for RightContent.…

ZKS
- 817
- 3
- 16
- 31
6
votes
3 answers
Transferring data between executables
I have two executables written in C++ on Windows. I generate some data in one, and want to call the other executable to process this data. I could write the data out to a file then read it in the other executable, but that seems rather expensive in…

Ben Hymers
- 25,586
- 16
- 59
- 84
5
votes
5 answers
How many ways to pass/share data b/w view controller
im new to IOS and Objective-C and the whole MVC paradigm and i'm stuck with the following.
I am working on (replica) Contact app, also available in iphone as build in app. i want to pass data through another view controller and the data is pass…

Amir iDev
- 1,257
- 2
- 15
- 29
5
votes
1 answer
Firebase sharing data with other users
I want to create item lists using Firebase that can be created by a user and then he can specify other users to share the list with (so they can also modify its contents). I plan to do this by using the following structure:
So the user section…

BramH
- 221
- 5
- 24