Questions tagged [data-sharing]
249 questions
2
votes
1 answer
Sharing Condition and Lock variable Across Classes in Java
I want to write a program where two separate threads run two objects and one thread waits to execute its code till it is signalled by the other.
Now to do this I want to use the Condition interface.
I am unable to figure out where to declare the…

Aditya
- 195
- 3
- 4
- 12
2
votes
2 answers
Sharing files/ installation directory between two apps
I have two apps on Android which need to share few files among them. Right now I share files via a ftp server.
Is there a way I can authenticate these apps to each other so that they can look into each others installed directory?
Thank you.
AAT

AAT
- 105
- 9
2
votes
1 answer
Sharing same (.edmx model) in multiple projects
I have created a database and converted the same in edmx/model in one of my ASP.NET sample projects.
Now I am creating another project in which I want to use the same .edmx/model. I try to copy the edmx model in second project and then adding up(Add…

Incredible
- 3,495
- 8
- 49
- 77
2
votes
2 answers
ASP.NET MVC 3 WITH RAZOR : How to pass selected checkbox' ids in a Partial view to controller action?
I have a partialview [_SearchProduct] within the main view, let's say [product] view. The Partialview has a number of checkboxes segregated into different sections like search by company,search by product etc. with one [search] button.
A User can…

Paul
- 457
- 2
- 11
- 26
2
votes
3 answers
Android App: Sharing data between users
I am developing an android app for building and sharing a database of bike trails.
Users will be able to add their own locations and trails to their local copy of the database, or edit existing descriptions, details, etc.
I would like some mechanism…

Brent
- 16,259
- 12
- 42
- 42
1
vote
1 answer
ASP .NET MVC 3 + Sharing Data Between A Controller And An ASPX WebForm
I am developping a web application by using the ASP .NET MVC 3 framework.
I want to display a Crystal Reports 2011 report in a viewer in one of my view : VIEW-1.
So I have created an ASPX WebForm containing a CrystalReportViewer control.
I want to…

user1139666
- 1,687
- 4
- 24
- 45
1
vote
2 answers
Collaboration between Drupal 7 sites
I working on a system in Drupal 7 that is targeted on a certain domain (the domain plays no role, but all sites in the system have the same domain). I'm trying to make different sites work together more seamlessly.
The idea is that two sites should…

Mikkel R. Lund
- 2,336
- 1
- 31
- 44
1
vote
3 answers
Exchanging data between web sites
What is the most practical way of exchanging data between web sites (format, medium, protocol ...) ?
For example say an open-source online game has been designed such that each site where it's installed acts as a separate world. How would you go…

James P.
- 19,313
- 27
- 97
- 155
1
vote
2 answers
A useful abstraction on ScenarioContext.Current?
This question is more for general discussion on sharing values in SpecFlow. Please provide any constructive feedback you may have based on your experience in SpecFlow.
I am relatively new to this technology, and when looking for a solution to…

Samo
- 8,202
- 13
- 58
- 95
1
vote
1 answer
Extend existing independent WatchOS app with iOS app and share data between them
First of all, I'm a newby and I'm sorry if this question is already answered. I searched and I didn't found any similar.
I already have and independent WachOS app and works fine by itself. At firs I thought that with it alone will be enough but now…

Víctor Fernández
- 11
- 1
1
vote
1 answer
how to modify the combinations table (that made by expand.grid() function) in r?
I made small, reproducible example,
but my real data is really huge...and have lots of levels.
roomnumber <- c(1,2,3)
color <- c('red','blue','green')
weight <- c(0.1,0.3,0.5)
data <- expand.grid(roomnumber,color,weight)
names(data) <-…

yoo
- 491
- 3
- 10
1
vote
0 answers
ObjectBox Database sharing between main app and its extension
I was trying to share the Objectbox created database between the app and its extension.
I used the below code to share the database between the app and its extension.
static func storeURL() -> URL {
guard let fileContainer =…

Love Saxena
- 19
- 4
1
vote
0 answers
Secured View and SIMULATED_DATA_SHARING_CONSUMER
We have built a secure share using secure views. Within our primary account, we have executed simulated_data_sharing_consumer under SYSADMIN and it works great, it works great for our consumers. However, we have a need to be able to perform the…

Neil Copeland
- 11
- 1
1
vote
3 answers
Sharing Objects between 2 different iPhone applications
We are requiring to share some information between 2 different iPhone applications which are part of suite. Let say we want to share some objects between those 2 applications like array.
After some search we found GenericKeychain demo application…

Janak Nirmal
- 22,706
- 18
- 63
- 99
1
vote
0 answers
Fetching data in separate servers
I have a monolithic REST API and a separate WebSocket server that’s used for real-time updates. They're both separate so that I can scale them independently. The API fetches data from the database and sends it to the users who request it, but I also…

Jack
- 53
- 5