Questions tagged [data-sharing]

249 questions
0
votes
1 answer

How to share an array between two classes that inherit from different classes

I've got a Rails application with a PubSub Server (Faye) as middleware.. I've got the usual Rails-structure for Models, Views and Controllers, and I've got some controllers for my Socket-channels.. (Provided by FayeRails) The problem: I need to…
Tim Baas
  • 6,035
  • 5
  • 45
  • 72
0
votes
0 answers

Sharing a configuration between java client and server applications

I'm building a java client server application (both are JSE), here a quick description. Server The server interact with an external system receiving "requests" and providing "responses" to these requests via TCP/IP. The content of the "response"…
0
votes
2 answers

Data Sharing Between Two Android Applications

I have been doing research on how can i share data between two applications. Here is what am trying to accomplish. I have an ocr application and an XMPP application. XMPP application has been connected to openfire server and is successfully sending…
Alfred
  • 11
  • 4
0
votes
2 answers

share common data in wars under ear

To reduce database hits, I've used static variables to store data from database. At time of WAR deployment this data is stored in these variabes as it is not changing so frequently. This scenario was working fine as the scope was with only single a…
vg123
  • 235
  • 2
  • 3
  • 13
0
votes
2 answers

ios share data between users

What is the best way to share data between users of the same app - like a shared list of items that only 2 specific users can see and edit. My question is about the data transfer part - is there any service or framework I can use? I would like to…
condor304
  • 209
  • 3
  • 8
0
votes
0 answers

Possible to share information between an add-on to an existing program and a standalone application?

Possible Duplicate: Best way to do interprocess communication on Mac OS X Is there any way that I could share information between two separate applications on OSX? Here is what I am aiming to achieve: Develop an add-on for a program, which will…
tom1990
  • 602
  • 8
  • 17
0
votes
5 answers

Share data between cron-job and webserver executed PHP scripts

The one below is a common way how a master and a child script do data sharing: cron job -- schedule --> master script HTTP request -- trigger --> child script master script --> [database] <-- child script But is it possible to them to share the…
stackunderflow
  • 1,492
  • 1
  • 23
  • 53
0
votes
1 answer

Sharing variables between multiple Dlls in C++

I need to share a variables (1000s) between 2 C++ Dlls. How should I do that? MyVariables.Dll contains: int a = 0; ModifyMyVariables.Dll contains: extern int a; a++; // do more stuff with a; What am i supposed to write in the following…
user1414260
  • 11
  • 1
  • 5
0
votes
1 answer

How to share data resources between widgets in GWT

I am using GWT and AppEngine for a project. I would like to know how can I share data (ArrayList objects)between widgets, so I could centralize the logic and reduce the number of RPC calls to the server. I have thought of two ways, but I don't know…
Berry
  • 59
  • 1
  • 10
0
votes
0 answers

Sharing data in a memcached server between applications

I am trying to share a bit of data between a Rails app and a Sinatra app. This data is generated and stored into memcached by the Rails app. The Sinatra app should then be able to go into the memcached server and grab data when users request it. My…
Mrjaco12
  • 776
  • 5
  • 4
0
votes
1 answer

How can I maintain a lookup relationship on a Salesforce to Salesforce connection?

Our client needs to import Contact information from a partner org via Salesforce to Salesforce. They also need to import CustomObject__c records, that have a lookup field to Contacts (that is: a Contact has n CustomObject__c). How can I achieve…
Pablo Venturino
  • 5,208
  • 5
  • 33
  • 41
-1
votes
2 answers

Getting data from output

I have npm called ngx-snake. I would like to collect data about points. In documentation has been written #### Outputs Name | Description --- | --- foodEaten | Called whenever our sweet snake gained some weight ;) gameOver | :( collision! snake…
Runner
  • 45
  • 5
-1
votes
2 answers

Angular sharing data

I have 2 component parent and child relationship. I want to call parent component method in my child component. I tried @Input decorator but that was not working. Please help
-1
votes
1 answer

The best practice of distribution data across all Angular Universal components?

I have got a pretty big Angular SPA with router-outlets and different level components. Currently, my application supports different regions where each region is a separate routing with relevant data attached: { path: 'Saint-Petersburg',…
Denis Evseev
  • 1,660
  • 1
  • 18
  • 33
-1
votes
2 answers

Have anyone worked on migrating an iOS app with Watch OS1 to Watch OS2 or higher versions which share data between iPhone & Watch

Have anyone worked on migrating an iOS app with Watch OS1 to Watch OS2 or higher versions. I have used Coredata & Appgroups for sharing data between iPhone app and watch app. Now in the newer Watch OS 2(& above) Apple no longer supports Appgroups to…
kiran kumar
  • 173
  • 1
  • 6
1 2 3
16
17