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
0
votes
1 answer

Could not connect to Realm Object Server 2.0

I install ROS on my server, but when I called ros start and it will running at my server, here is the log: login as: root root@*.*.*.*'s password: Welcome to Ubuntu 16.04.3 LTS (GNU/Linux 4.4.0-109-generic x86_64) * Documentation: …
339
  • 42
  • 8
0
votes
0 answers

How to grant permission to user if login method used is custom

I am using a custom authentication method for storing and retrieving data in the realm object server. I would like the user to grant permission to other users. String REALM_URL = "realm://" + OBJECT_SERVER_IP + ":" + OBJECT_SERVER_PORT + "/~/" if…
suku
  • 10,507
  • 16
  • 75
  • 120
0
votes
1 answer

How to Use local realm and sync realm(Realm Object Server) in a single Project?

I want to use local realm and sync realm(Realm Object Server) in single Android Project. I want to store some data on local realm(that shouldn't be uploaded to Realm Object Server) and some data on Realm Object Server. I am creating two realm…
user2546410
  • 51
  • 1
  • 1
  • 5
0
votes
1 answer

Realm Object Server: Access Denied Error after successful login using Custom Authentication

I am trying to setup a Realm Object Server for my company's mobile application. I have to use a custom authentication to allow users to access the database. import { BasicServer } from 'realm-object-server' import * as path from 'path' import {…
suku
  • 10,507
  • 16
  • 75
  • 120
0
votes
0 answers

Realm - List of possible error codes

In Realm Object Server sample codes, following can be found: throw new deps.problem.HttpProblem.Unauthorized({ detail: `Something bad happened: ${err.toString()}`, }); Here, like deps.problem.HttpProblem.Unauthorized there may…
Akshay Shah
  • 1,120
  • 6
  • 13
0
votes
1 answer

How to start Realm object server with custom authentication

I have updated index.js file with custom authentication based on https://realm.io/docs/realm-object-server/latest/index.html#custom-authentication Below is the content of my index.js file const RealmObjectServer =…
Akshay Shah
  • 1,120
  • 6
  • 13
0
votes
2 answers

can I install realm object server on Windows platform?

How can I install realm object server on my windows platform? I tried using the npm command-line. It installed but the server didn't start. It threw this error: module.js:544 throw err; ^ Error: Cannot find module …
dMd
  • 61
  • 1
  • 4
  • 11
0
votes
1 answer

Realm Object Server

I am developing Xamarin app(ios, android) using ros(realm object server). 1. how to connect ros with ros studio and realm browser. i entered my ip address, host info: it is result. i dont know what is form: i want use url only. 2. i want to know…
0
votes
1 answer

Realm Object Server on table sync listener on client (android)

Hello I have an android realm (4.1.0) that connected with ROS 2.0. Configuration contains few tables. Is it possible to have on table change listener on android side? i mean catch an action when item have been inserted or updated on server table…
Siarhei
  • 2,358
  • 3
  • 27
  • 63
0
votes
1 answer

Delete .realm file on ROS from Xamarin client SDK

I'm using ROS 2.0 with the latest client SDK for Xamarin. In my app a user has several DataStore objects (each represented by a separate realm). The user can create and delete DataStores (realms). Creation just works fine but calling…
nor0x
  • 1,213
  • 1
  • 15
  • 41
0
votes
1 answer

How to configure Realm Object Server v2.0.4 for HTTPS connections?

I have deployed Realm Object Server v2.0.4 onto Ubuntu and also implemented LetsEncrypt. I can connect using the new Realm Studio - all seems good. Now that the base server is in place I need to configure it to use HTTPS and disable HTTP - and this…
Ian Bradbury
  • 1,416
  • 11
  • 18
0
votes
1 answer

ROS v1.8.3 with android realm 4.1.0 sync issue

trying to connect ROS v1.8.3 with android realm 4.1.0, but got an error on connection: Connection[1]: Writing failed: End of input Connection[1]: Connection closed due to error Connection[1]: Reconnecting in 472 milliseconds Connection[1]:…
Siarhei
  • 2,358
  • 3
  • 27
  • 63
0
votes
1 answer

Realm object server sync on low connection.

i have an realm object server and tries to sync data with android device like: SyncCredentials syncCred = SyncCredentials .usernamePassword(username, password, false); SyncUser.loginAsync(syncCred, url, new SyncUser.Callback() { …
Siarhei
  • 2,358
  • 3
  • 27
  • 63
0
votes
1 answer

Realm Object Server Swift, changing default permission of a realm

I created a realm with an admin account and when i look at my dashboard my realm is there. Its owner column is blank though? Is it normal? Because I opened that synced realm with my admin account. My main question is this, in default permissions it…
0
votes
1 answer

Seed Data From Realm Sync Configuration in UICollectionView

So, here's my issue: The local path for realms on iOS are located in the Documents Directory. I can open them with: let realm = try! Realm() Opening a sync realm is different as they are located by URLs https://realm.io/docs/swift/latest/#realms I…