Questions tagged [loopback]

In telecommunications, loopback, or a loop, is a hardware or software method which feeds a received signal or data back to the sender.

In telecommunications, loopback, or a loop, is a hardware or software method which feeds a received signal or data back to the sender. It is used as an aid in debugging physical connection problems. As a test, many data communication devices can be configured to send specific patterns (such as all ones) on an interface and can detect the reception of this signal on the same port. This is called a loopback test and can be performed within a modem or transceiver by connecting its output to its own input. A circuit between two points in different locations may be tested by applying a test signal on the circuit in one location, and having the network device at the other location send a signal back through the circuit. If this device receives its own signal back, this proves that the circuit is functioning.

1273 questions
0
votes
1 answer

Control the dom-if of child element, after getting a property from parent element

I am pretty new to polymer, I wanted to perform below scenario... I have a bind variable {{readonly}} through which I send data from parent Dom-HTML to Child Dom-HTML, in Polymer The code snippet is roughly like this.. calling child DOM from…
0
votes
1 answer

Examples of Loopback Applications for Testing?

I think it's useful to test relations and there's virtually no documentation or standard way of approaching testing in loopback. I'm wondering if there's an example applications of any size that go into testing. Is there a set of tools that is…
user3162553
  • 2,699
  • 3
  • 37
  • 61
0
votes
1 answer

Push notification using onesignal in loopback

Hi i'm trying to integrate onesignal push notification in loopback but i can't figure out the logic behind that and totally lost. so i need some support from you friends . Thanks in advance ...
sunilsmith
  • 111
  • 2
  • 15
0
votes
1 answer

Can I hide model properties from datasources in strongloop?

I would like to pass a "token" object to POST /MyObject. The easiest way to do that seems to be to add it as a property to MyObject.json. The problem is that this token is not persisted (it doesn't last for very long and there's no need to save…
anonymouse
  • 639
  • 1
  • 8
  • 18
0
votes
1 answer

Setup code for loopback under boot folder

I'm looking to access control example. https://github.com/strongloop/loopback-example-access-control It says we need to put sample-models.js file under server/boot folder. That means, everytime I run the application, the creation process will be…
Volkan Ozyilmaz
  • 470
  • 4
  • 19
0
votes
1 answer

Models in LOOPBACK

I create my first loopback project and model name I gave it as notes after starting the project I found in the localhost a model named user been created (but I didn't create it) and also found login and logout methods but don't know how it's…
sunilsmith
  • 111
  • 2
  • 15
0
votes
1 answer

Loopback Module login error

I have took a errored loopback project for correction in which has a module let it be Provider it has a function Provider/Login comes with POST method... this is the error stated by the customer that if he gives gor example…
sunilsmith
  • 111
  • 2
  • 15
0
votes
0 answers

Loopback remote call on downloading file

Is it possible to add a remote method call like afterRemote/beforeRemote while download call of a file in loopback? File model has a base class to "model", Has operations like upload,download, by using container and file name as parameters. On that,…
Nithya
  • 23
  • 6
0
votes
2 answers

how to use Loopback mongoDB with SSL certificate?

I just trying to find out how to use SSL certs with the mongo Strongloop Loopback connector. Didn't find anywhere in the docs or googling
0
votes
1 answer

Loopback- model name automatically created can't change it simple and user-friendly

While creating model using loopback , it can be created only using the mysql table name. If it changed to some other names,it throws an error of "table doesn't exists"., how it can be rectified?
Nithya
  • 23
  • 6
0
votes
1 answer

Populating Loopback models with existing data

I've got an array of model data in JSON from a Postgres SQL query in Loopback. I want to be able to populate loopback models with this data directly - which presumably the loopback-datasource-juggler already does in the dao.js…
JonRed
  • 2,853
  • 5
  • 28
  • 37
0
votes
1 answer

Send the client JSON with Users.on('resetPasswordRequest') in loopback

I use method Users.on('resetPasswordRequest') in loopback to retrieve the password Users.on('resetPasswordRequest', function (info) { var html = 'abcxyz'; Users.app.models.Email.send({ to: info.email, from: 'abc@gmail.com', …
Mr.Dung
  • 333
  • 1
  • 3
  • 10
0
votes
1 answer

Performance penalty in executing native SQL in Strongloop Loopback

Is there any disadvantage to execute native SQL query using either {dataSource.connector.execute(sql, params, cb) or dataSource.connector.query(sql, params, cb)} than using connected models? I have recently tested the same scenario with sample data…
Niyat patel
  • 23
  • 1
  • 7
0
votes
0 answers

Create custom user model extending user built in model and working on MySQL database loopback

I'm trying to use the built-in model User in loopback to login my user. I have a custom model named Customer that is connecting with a mysql database and that extends User model. But I don't understand how to make User model working on MySQL…
0
votes
2 answers

Error 401 on POST Request in Loopback

Good morning, guys. I'm still new to Loopback, and have a feeling that I'm missing something, but not sure where and what to find, so advice would be helpful. I have an app. I'm using local authentication with standard ACL. I have few methods that…
Midnight Coder
  • 721
  • 1
  • 8
  • 20