Questions tagged [realm-object-server]

The Realm Object Server synchronizes Realms between devices, provides authentication and access control services for Realms, and offers backend integrations and server-side event handling.

Realm Object Server documentation available at:

85 questions
1
vote
1 answer

Segmentation Fault syncing in (postgres node adapter) from React Native -> ROS -> Postgres

Write data from react-native to Realm Object Server by Realm.Sync.User.login('https://xxxx-xxxx-xx.us1.cloud.realm.io/', 'xxxxx', 'xxxxxx') .then((user) => { const config = { sync: { user, url:…
1
vote
1 answer

Android Realm Schema mismatch error

How do you guys match your java realm objects with swift realm objects? My realm development started with Swift so the object server contains data migrated from swift. I then created my android version using Java (with models from Realm Studio).…
1
vote
2 answers

Network connection was lost error

I am trying to connect into realm object server from an app developed with swift on macos When I try to connect, I get this error "Network connection was lost", but I can open the realm server from the browser without a problem.. btw, this problem…
Hadi
  • 705
  • 8
  • 23
1
vote
1 answer

Realm sync not working after reconnecting to the internet

I have a trouble on sync with realm object server when user connects to the object server (login), than switch Internet Off, adds new items to db, and than switch Internet ON - data not synced. Android app uses 4.3.1 realm…
Siarhei
  • 2,358
  • 3
  • 27
  • 63
1
vote
0 answers

History type (as specified by the Replication implementation passed to the SharedGroup constructor) was not consistent across the session

I am trying to open the realm file locally through realm object server but I am getting this exception : History type (as specified by the Replication implementation passed to the SharedGroup constructor) was not consistent across the…
1
vote
1 answer

Android realm cannot resolve symbol SyncCredentials, SyncUser, ObjectServerError. But Realm, RealmObject.. classes are working fine

I have taken code from Realm objectServerExample. SyncCredentials creds = SyncCredentials.usernamePassword(username, password, createUser); SyncUser.Callback callback = new SyncUser.Callback() { @Override …
amitdigga
  • 6,550
  • 4
  • 26
  • 31
1
vote
0 answers

How to connect to Realm Amazon EC2 instance in Android?

I created a EC2 instance based on Realm public AMI: ami-9f1522e4. It seems to be working fine. I am trying to connect to it in Android with the following code String authUrl= "realm://54.173.116.160:9080/auth"; // 54.173.116.160 is my instance…
1
vote
0 answers

Realm Object Server delete object

If I delete an object from Realm Object Server, is it permanently deleted? If not, where does it go (directory)? I'm need to know if i need to do something with deleted objects in order to free up some space. Thanks!
half_stack
  • 51
  • 3
1
vote
1 answer

Users Realms Access or One Public Realm

Let's assume I want to create an app like Instagram. Every user of my app has his own realm file where he keeps his profile data, pictures, likes of pictures and comments. What if I want to create a wall where are visible latest pictures of all…
Adam Smaka
  • 5,977
  • 3
  • 50
  • 55
1
vote
0 answers

Securing the Realm Object Server with Let’s Encrypt

I do instructions of Securing the Realm Object Server with Let’s Encrypt step by step and thanks for good article of Nikola Irinchev that's work so good. When i want to use realms:// instead of realm:// and read docs of Realm Java 3.4.0 for using…
Saeed
  • 101
  • 1
  • 1
  • 12
1
vote
1 answer

Realm Files in Memory For Production Applications

So, I am little confused about how multiple Realms would work in a single application for a user accessing all of the information in the application. For example, if Instagram used Realm, am I, as a user, accessing multiple Realms per feature…
user6684504
1
vote
1 answer

Can't see the database on Realm Object Server

I have created a method to manage shared table between all users however I can't see this table. I have just remove the "~" character, it works if I leave the "~" character but the table it's only visible by the owner. I don't know why it does not…
1
vote
1 answer

Hack Realm share database

I was wondering, if I create a share user entity on a Realm object server. If a user access to the database from his mobile. Could he see all the user data? I'm worry about sensible information on a shared database.
Alan Digitals
  • 175
  • 1
  • 5
1
vote
1 answer

Migrate users/realms between Realm Object Servers

I'm attempting to move a synced user+realm between two Realm Object Servers (developer edition), moving the Realm file is relatively straight forward but moving the user seems a little less so. The docs are a little sparse on the purpose and…
1
vote
2 answers

HTTPS setup for the URL of Realm Object Server

While preparing to submit an app, I discovered that Apple requires that all calls must be in HTTPS. In my code, the server URL in SyncUser.logIn is just a normal plain HTTP call http://mywebsite:9080. Details of my configuration I have a…