Questions tagged [shared-data]
63 questions
2
votes
1 answer
Illegal attempt to work with the core-data or default zone in the shared database
The setup:
My app uses CoreData+CloudKit to mirror iCloud content.
I am implementing record zone sharing and am testing it using 2 iPhones.
iPhone 1 executes the app standalone, iPhone 2 under Xcode control.
When iPhone 1 user invites iPhone 2 user…

Reinhard Männer
- 14,022
- 5
- 54
- 116
2
votes
0 answers
C# OneDrive like extension to Windows Explorer
I found this question/solution related to programming OneDrive like extension:
Creating a special folder in Windows Explorer like DropBox or OneDrive
Is it possible to do it in a way that files don't use up local disk space (like they do in…

TheMixy
- 1,049
- 15
- 36
2
votes
1 answer
How to share the folder with ms word in ios?
I need to integrate work with ms office in my application. I use the article https://msdn.microsoft.com/EN-US/library/office/dn911482.aspx, but when you send a file to url, ms word can not access it :(
For send I use: canOpenUrl/openUrl. Url string…

Lexd5
- 56
- 6
1
vote
0 answers
Unable to make a filter slider of R with crosstalk
I am attempting to create a slider for the date on the Big Mac Adjusted Index from https://github.com/TheEconomist/big-mac-data/releases/tag/2022-07. The error is in bscols function on R and reads as followed;"Error in sharedData$data(withKey =…

Ubaldo Arzate
- 11
- 1
1
vote
0 answers
Share images and data between two python processes running simultaneously with multiprocessing
I'm currently working on a python project. It's about image detection. I have to processes, which are running simultaneously with multiprocessing. The first function communicates with the frame grabber and is doing some image processing. The second…

julitos.m
- 45
- 1
- 1
- 7
1
vote
0 answers
Shared data b/w AIR and Android app
We are facing the issue of writing into android database (created by our app) from flash application (our another AIR app). From android point of view this will go against the security model by which each application process should not access…

ankitjaininfo
- 11,961
- 7
- 52
- 75
1
vote
1 answer
asp.net mvc5 global variables for all views
I have fb,twitter and youtube urls in DB, and about 30 other application level variable.
currently I am querying it in each action bcz in template I have social links in footer, if missed that will throw error.
ViewBag.Contents = db.Contents.Where(s…
user10182659
1
vote
5 answers
How should I handle a shared database that needs to be referenced by multiple applications?
In my SOA, I have 2 services - a users service and products service. Both users and products can be "tagged" with 2 objects - countries and industries. This means that both services will have a join table and future services will need that as…

Tony
- 18,776
- 31
- 129
- 193
1
vote
1 answer
angular 4 best practice: load global data via service and store it
i want to build an angular 4 application, where i can search for user from a database and use the information of the person i found on different routes. my problem at the moment is, if i load some data via a service, change the route and come back,…

Peter
- 267
- 2
- 5
- 14
1
vote
1 answer
Make an Android+ios+web app with profiles like facebook, using google cloud services
I am working on a project which needs to store profiles of people on the cloud.
Information includes multiple photos and multiple text fields. I don't need Messaging.
There is lot if confusion in the documentation provided Google Cloud Services.
I…

Flying Monkey
- 669
- 1
- 5
- 13
1
vote
2 answers
share Phonegap storage database between two android apps
Is there a way by which two different android apps could share the same database using the Phonegap Storage API (http://docs.phonegap.com/en/2.0.0/cordova_storage_storage.md.html#SQLTransaction); while searching i came across android share id and…

Nilayan
- 15
- 2
1
vote
2 answers
Error expected identifier before token "<"
I am a beginner in C++. I have this header file called SharedData.h. Its given below.
//SharedData.h
#include
typedef struct Shared_data
{
std::string _data;
bool IsConsumedbyNodeA;
bool IsConsumedbyNodeB;
public:
…

TechTotie
- 127
- 1
- 15
1
vote
1 answer
Drupal 7 multi-site, multiple database and 1 shared code base
I want to develop drupal multi-site with this structure:
One shared codebase drupal 7 multi-site, each web site has own database.
One master web site that has some tables shared.
Each multi site instances read some tables from master's database,…

mtin -nong
- 53
- 1
- 7
1
vote
1 answer
Sharing data between master thread and slave thread in interrupt driven environment in C
I have the following:
f1()
{
while(1)
{
call f(2) if hardware interrupt pin goes high
}
}
f2()
{
if( th() not started )
{
start thread th()
}
else
{
return thread th() status
}
}
th()
{
…

Arash Fotouhi
- 1,933
- 2
- 22
- 43
0
votes
1 answer
How to access shared static data from multiple service
I've build wcf service under IIS 7.
I've problem with shared data.
I get error in runtime, when i try to access static data from other service.
Service 1
[ServiceContract(Name="ServiceChat", CallbackContract=typeof(IChatCallback))]
public…

Hensembryan
- 1,067
- 3
- 14
- 31