0
私はMac上で実行中のRealm Object Server(192.168.100.61:9080 ip)とPC上のXamarin Appを持っています。 ROSのデータを保存/同期します。 コードからROSにどのように接続できますか?.NETコード(Xamarin)からRealm Object Serverに接続する方法は?
私はMac上で実行中のRealm Object Server(192.168.100.61:9080 ip)とPC上のXamarin Appを持っています。 ROSのデータを保存/同期します。 コードからROSにどのように接続できますか?.NETコード(Xamarin)からRealm Object Serverに接続する方法は?
ユーザにログイン/登録し、同期レルムを開く必要があります。次のようなもの:
// pass createUser: true to register rather than login
var credentials = Credentials.UsernamePassword("[email protected]", "super-secure", createUser: false);
// Login the user
var user = await User.LoginAsync(credentials, new Uri("http://192.168.100.61:9080"));
// Create a sync configuration for the Realm
// Notice the URL uses the realm scheme and not http
var config = new SyncConfiguration(user, new Uri("realm://192.168.100.61:9080/~/myrealm"));
// Finally, get the Realm instance
// This Realm will be kept in sync with the remote one
var realm = Realm.GetInstance(config);
詳細については、documentationをご覧ください。
これは、このサイトでより良い回答を得るのに役立ちます。https://stackoverflow.com/help/how-to-ask – Kixoka