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
2 answers

Opening Realm Dashboard on Amazon EC2

I'm trying to setup Realm Object Server on Amazon EC2. I've used the public AMI on North Virginia, and I have a running instance. I'm doing all this from Europe as most of my users are in the USA. Now I'm trying to access…
lorenzo
  • 1,487
  • 1
  • 17
  • 25
1
vote
1 answer

(Mac) Realm Object Server Login Failed: Email/Password Incorrect

I installed Realm on computer1 and ran the Realm Object Server (creating a new admin user) then installed and ran Realm Object Server on computer2 attempting to create the same admin user I created on computer1. It immediately went to the login page…
1
vote
1 answer

Is it possible to use Realm object server real time sync without indices?

I was looking into real time sync as implemented in Realm's "tasks" example app. In particular, this block: private func setupNotifications() -> NotificationToken { return parent.items.addNotificationBlock { [unowned self] changes in …
User
  • 31,811
  • 40
  • 131
  • 232
1
vote
2 answers

Realm object server and iCloud

How do I use iCloud to authenticate with Realm object server? I know I have to call login with the "iCloud token" but not being able to find how to get this token. So far what I could find is this: FileManager.default.ubiquityIdentityToken which…
User
  • 31,811
  • 40
  • 131
  • 232
0
votes
0 answers

How can I customize SyncUser of Realm Platform?

Question Is there a way to add more info to the SyncUser object of Realm Platform? Should I override SyncUser? Version of Realm and Tooling Realm: 4.3.1 RealmSwift: 4.3.1 Xcode: 11.3.1 Swift: 5.1.3
0
votes
1 answer

Inspect Realm proxy objects

In javascript I am using this function export async function createNewRealm(name) { if (process.env.REALM_DISABLED === 'true') return Promise.resolve(); if (!connectionAdminUser) await establishRealmConnection(); console.log(`Creating ${name}…
Miroslav Saracevic
  • 1,446
  • 1
  • 13
  • 32
0
votes
1 answer

How can I access Realm database from a different ViewController?

I'm making an app (Swift 4), where a Realm database is created in one View Controller, but I cannot seem to access the objects from a different view controller. Essentially, a user rates a meal in the first view controller, and the meal name and a…
0
votes
1 answer

Realm auto increment primary key with sync to postgres database

Best practise to use primary key for data synced from postgres to ROS then to app. User can insert data to these tables and they will be synced back to postgres. Definitely maxId + 1 is not the solution as multiple users can insert at same…
0
votes
1 answer

Realm Object Server file migration critical issue

I've just upgraded ROS from 2.7.2 to 3.4.2. And now it becomes interesting. Our users can't open their synced realms because of error. [RLMSyncManager sharedManager].errorHandler = ^(NSError *error, RLMSyncSession *session) { …
Evgen Bodunov
  • 5,438
  • 2
  • 29
  • 43
0
votes
0 answers

Realm Object Server Data Adapter with Docker Compose

I’m trying to configure an ecosystem with RealmObjectServer + Postgresql + DataAdapter using Docker Compose, but I can’t connect the Data Adapter server with the ROS because the adapter requires the HTTPS protocol. It keeps showing this error on my…
0
votes
1 answer

Work with ROS data in server side

I need to implement a social network in the mobile application, in the application I will work with the local database, and then synchronize the data with the Realm Object Server. To handle some user activity, I will use a neural network written in…
0
votes
0 answers

How do I use "ros init" properly?

I have an app that works fine with Realm currently; I've got the ROS 2.0.18 running on an AWS EC2 instance, which started with a "blank" Ubuntu AMI onto which I installed/started ROS using, I believe, curl -s…
Jonathan Tuzman
  • 11,568
  • 18
  • 69
  • 129
0
votes
1 answer

Understanding Users on Realm Object Server

I recently set up a Realm Object Server on Digital Ocean. I configured the server to use Facebook authentication. I then wrote a simple iOS App to login with the Facebook iOS SDK and then I use Realm to login like this let credentials =…
Jon Vogel
  • 5,244
  • 1
  • 39
  • 54
0
votes
1 answer

Check if object has been synced to the Realm Object Server

Is there a way to check if the new object/edited object has been synced yet? I need to put an indicator that shows if the edited object has been successfully synced or is still only saved locally. I'm using Realm Object Server v1.0.
Hadi
  • 705
  • 8
  • 23
0
votes
1 answer

Default permission says no access For realm created by admin

my Realm Object Server is in aws ec2 and whenever I create any realm through admin credentials(synced) and check the ros through IP the default permissions says no access final SyncCredentials syncCredentials =…